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

22 lines
407 B
Makefile
Raw Normal View History

2020-06-15 21:27:41 +02:00
.PHONY: clean publish test docs
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
publish :
twine upload dist/*.tar.gz dist/*.whl
2018-06-25 14:27:40 +02:00
test:
pytest -v
2018-06-25 14:27:40 +02:00
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
2022-11-12 15:29:19 +01:00
rm -rf build dist MANIFEST htmlcov toot*.tar.gz
2019-09-04 08:39:18 +02:00
changelog:
./scripts/generate_changelog > CHANGELOG.md