1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-09-22 04:25:55 -04:00
toot/Makefile

22 lines
353 B
Makefile
Raw Normal View History

2017-04-12 10:42:04 -04: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 :
rm -rf build dist *.egg-info MANIFEST htmlcov
2017-04-12 10:42:04 -04:00
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/