Browse Source

add makefile

master
evan 4 years ago
parent
commit
d877b51331
  1. 14
      Makefile

14
Makefile

@ -0,0 +1,14 @@ @@ -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/*
Loading…
Cancel
Save