mini-syndicate-py/Makefile

17 lines
314 B
Makefile
Raw Normal View History

2018-11-20 19:45:27 +00:00
test:
@echo no tests yet, lol
clean:
rm -rf htmlcov
find . -iname __pycache__ -o -iname '*.pyc' | xargs rm -rf
rm -f .coverage
rm -rf preserves.egg-info build dist
# sudo apt install python3-wheel twine
publish: clean
python3 setup.py sdist bdist_wheel
twine upload dist/*
veryclean: clean
rm -rf pyenv