add makefile

This commit is contained in:
evan
2020-04-22 16:10:26 -05:00
parent 688b4c8112
commit d877b51331

14
Makefile Normal file
View File

@@ -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/*