diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..852f221 --- /dev/null +++ b/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | package: COPYING ngus/__init__.py ngus/__main__.py LICENSE README.md setup.py | ||
| 2 | python setup.py sdist bdist_wheel | ||
| 3 | |||
| 4 | upload: dist/* | ||
| 5 | python -m twine upload dist/* | ||
| 6 | |||
| 7 | upload-test: dist/* | ||
| 8 | python -m twine upload --repository testpypi dist/* | ||
| 9 | |||
| 10 | clean: | ||
| 11 | rm -rf build dist ngus/__pycache__ ngus.egg-info | ||
