summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
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 @@
1package: COPYING ngus/__init__.py ngus/__main__.py LICENSE README.md setup.py
2 python setup.py sdist bdist_wheel
3
4upload: dist/*
5 python -m twine upload dist/*
6
7upload-test: dist/*
8 python -m twine upload --repository testpypi dist/*
9
10clean:
11 rm -rf build dist ngus/__pycache__ ngus.egg-info