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

22 lines
353 B
Makefile

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 :
rm -rf build dist *.egg-info MANIFEST htmlcov
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/