File size: 271 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
.PHONY : all
all :
install : all
pip install -U .
package :
python setup.py sdist
release : clean package
twine upload dist/*
mostlyclean:
rm -rf .coverage.*
clean: mostlyclean
rm -rf build dist src/wrapt.egg-info .tox
test :
tox --skip-missing-interpreters
|