Asib27's picture
try 1
065fee7 verified
raw
history blame
271 Bytes
.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