toot/Makefile

23 wiersze
392 B
Makefile
Czysty Zwykły widok Historia

2017-04-12 14:42:04 +00:00
default : clean dist
dist :
@echo "\nMaking source"
@echo "-------------"
@python setup.py sdist
@echo "\nMaking wheel"
@echo "-------------"
@python setup.py bdist_wheel --universal
@echo "\nDone."
clean :
2017-04-24 14:24:43 +00:00
find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist *.egg-info MANIFEST htmlcov
2017-04-12 14:42:04 +00:00
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/