twitch-dl/Makefile

36 lines
780 B
Makefile
Raw Normal View History

2018-01-25 10:09:20 +00:00
default : clean dist
dist :
2019-06-06 07:28:23 +00:00
python setup.py sdist --formats=gztar,zip
2019-08-13 10:40:00 +00:00
python setup.py bdist_wheel --python-tag=py3
2018-01-25 10:09:20 +00:00
clean :
find . -name "*pyc" | xargs rm -rf $1
2020-08-13 11:47:03 +00:00
rm -rf build dist bundle MANIFEST htmlcov deb_dist twitch-dl*.tar.gz twitch-dl.1.man
bundle:
mkdir bundle
cp twitchdl/__main__.py bundle
pip install . --target=bundle
rm -rf bundle/*.dist-info
find bundle/ -type d -name "__pycache__" -exec rm -rf {} +
python -m zipapp \
--python "/usr/bin/env python3" \
--output twitch-dl.`git describe`.pyz bundle \
--compress
2018-01-25 10:09:20 +00:00
publish :
2019-06-06 07:28:23 +00:00
twine upload dist/*.tar.gz dist/*.whl
2018-01-25 10:09:20 +00:00
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
test:
pytest