Toot-Mastodon-CLI-TUI-clien.../Makefile

22 lines
428 B
Makefile
Raw Normal View History

2018-06-25 14:27:40 +02:00
.PHONY: clean publish test
2017-04-12 16:42:04 +02:00
dist :
2018-06-25 14:27:40 +02:00
python setup.py sdist --formats=gztar,zip
python setup.py bdist_wheel --python-tag=py3
2017-04-12 16:42:04 +02:00
2018-06-25 14:27:40 +02:00
deb_dist:
python setup.py --command-packages=stdeb.command bdist_deb
2017-04-12 16:42:04 +02:00
publish :
twine upload dist/*.tar.gz dist/*.whl
2018-06-25 14:27:40 +02:00
test:
pytest -v -s
coverage:
py.test --cov=toot --cov-report html tests/
2017-08-26 15:56:41 +02:00
2018-06-25 14:27:40 +02:00
clean :
find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz