1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-09 06:10:43 +00:00
toot/Makefile
2017-04-24 16:24:52 +02:00

23 lines
392 B
Makefile

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 :
find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist *.egg-info MANIFEST htmlcov
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/