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

20 lines
309 B
Makefile
Raw Normal View History

2022-07-26 09:29:22 +03:00
build:
python -m build
2022-07-26 09:29:22 +03:00
upload:
python -m twine upload dist/*
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
check:
chmod +x test.sh
bash test.sh
2022-10-31 16:27:21 +03:00
format:
python -m autopep8 -r --in-place .