diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ce4c1c2 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.PHONY: clean +binaries=dist build + +install: + python3 setup.py install + +build: + python3 setup.py build + +dist: + python3 setup.py sdist + +upload: clean dist + twine upload dist/* + +clean: + rm -rf $(binaries)