Files
deb-python-wrapt/Makefile
2017-03-15 10:47:53 +11:00

19 lines
189 B
Makefile

.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