Add convenience makefile for install/test/release.

This commit is contained in:
Graham Dumpleton 2017-03-15 10:47:53 +11:00
parent 01a29008ba
commit 40109dc4a2
1 changed files with 18 additions and 0 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
.PHONY : all
all :
install : all
pip install -U .
package :
python setup.py sdist
release : clean package
twine upload dist/*
clean :
rm -rf build dist wrapt.egg-info
test :
tox