twitch-dl/Makefile

29 lines
540 B
Makefile
Raw Normal View History

2018-01-25 10:09:20 +00:00
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 :
find . -name "*pyc" | xargs rm -rf $1
2019-02-10 09:46:03 +00:00
rm -rf build dist MANIFEST htmlcov deb_dist twitch-dl*.tar.gz twitch-dl.1.man
2018-01-25 10:09:20 +00:00
publish :
twine upload dist/*
coverage:
py.test --cov=toot --cov-report html tests/
deb:
@python setup.py --command-packages=stdeb.command bdist_deb
2019-02-10 09:46:03 +00:00
man:
scdoc < twitch-dl.1.scd > twitch-dl.1.man