Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
nnsnodnb committed Jun 5, 2018
1 parent 70f46ec commit eea233c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
clean:
@ find . -name '*.py[co]' -delete
@ find . -name '__pycache__' -delete
@ rm -rf *.egg-info dist build .tox

publish:
@ python setup.py sdist bdist_wheel
@ pip install twine
@ twine upload dist/*
@ pip uninstall twine -y
@ rm -rf ./upload ./dist

0 comments on commit eea233c

Please sign in to comment.