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

22 lines
407 B
Makefile

.PHONY: clean publish test docs
dist :
python setup.py sdist --formats=gztar,zip
python setup.py bdist_wheel --python-tag=py3
publish :
twine upload dist/*.tar.gz dist/*.whl
test:
pytest -v
coverage:
py.test --cov=toot --cov-report html tests/
clean :
find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist MANIFEST htmlcov toot*.tar.gz
changelog:
./scripts/generate_changelog > CHANGELOG.md