This repository has been archived on 2024-07-30. You can view files and clone it, but cannot push or open issues or pull requests.
python-aternos/Makefile

29 lines
460 B
Makefile
Raw Normal View History

2022-07-26 09:29:22 +03:00
build:
python3 -m build
2022-07-26 09:29:22 +03:00
upload:
python3 -m twine upload dist/*
2022-07-26 09:29:22 +03:00
2022-12-26 13:41:39 +03:00
doc:
python3 -m mkdocs build
2022-07-26 09:29:22 +03:00
clean:
rm -rf dist python_aternos.egg-info
rm -rf python_aternos/__pycache__
rm -rf examples/__pycache__
rm -rf tests/__pycache__
rm -rf site .mypy_cache
2022-12-25 17:22:10 +03:00
test:
python3 -m unittest discover -v ./tests
2022-12-25 17:22:10 +03:00
check:
python3 -m mypy .
python3 -m pylint ./python_aternos
2022-12-25 17:22:10 +03:00
fullcheck:
chmod +x check.sh; bash check.sh
2022-10-31 16:27:21 +03:00
format:
python3 -m autopep8 -r --in-place .