1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-16 06:15:25 +00:00
toot/Makefile
2019-09-04 08:39:18 +02:00

25 lines
485 B
Makefile

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