diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d91b4d0 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +DIST_DIR := dist + +default: clean sdist + +clean: + $(RM) $(DIST_DIR)/* + +sdist: + python setup.py sdist + +testupload: + twine upload dist/* -r testpypi + +upload: + twine upload dist/*