DarkCat09
4892430f19
MkDocs: sphinx docstrings rewritten to google, improved config, written the major part of how-to. Readme: centered title + logo, added badges, features list, updated changelog. Improved Files API, added automatical session saving and restoring to Client. Some changes in makefile and gitignore. License Notice now refers to all contributors.
16 lines
264 B
Makefile
16 lines
264 B
Makefile
build:
|
|
python -m build
|
|
|
|
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
|