diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0f98f35 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# Evan Widloski - 2019-03-04 +# makefile for building + +.PHONY: dist +dist: + python setup.py sdist bdist_wheel + +.PHONY: pypi +pypi: dist + twine upload dist/* + +.PHONY: clean +clean: + rm dist/*