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

26 lines
470 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 :
2017-04-24 10:24:43 -04:00
find . -name "*pyc" | xargs rm -rf $1
2017-12-31 09:42:18 -05:00
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz
2017-04-12 10:42:04 -04:00
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/
2017-08-26 09:56:41 -04:00
deb:
@python setup.py --command-packages=stdeb.command bdist_deb