diff --git a/Makefile b/Makefile index 3c1e835..a6513e3 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,15 @@ default : clean dist dist : - @echo "\nMaking source" - @echo "-------------" - @python setup.py sdist - - @echo "\nMaking wheel" - @echo "-------------" - @python setup.py bdist_wheel --universal - - @echo "\nDone." + python setup.py sdist --formats=gztar,zip + python setup.py bdist_wheel --python-tag=py3 clean : find . -name "*pyc" | xargs rm -rf $1 rm -rf build dist MANIFEST htmlcov deb_dist twitch-dl*.tar.gz twitch-dl.1.man publish : - twine upload dist/* + twine upload dist/*.tar.gz dist/*.whl coverage: py.test --cov=toot --cov-report html tests/