summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimeon Simeonov2021-08-02 21:14:40 +0200
committerSimeon Simeonov2021-08-02 21:14:40 +0200
commitdc1baaa1b1079516a7e2aead21f9af847e64494d (patch)
tree7b10ba56967dbe14e7bbab48c13bee61620b524c /Makefile
Initial commitv1.0
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