django-categories/Makefile
2020-03-06 11:14:46 -06:00

20 lines
406 B
Makefile

help:
@echo ""
@echo "Available make commands:"
@echo ""
@echo "deps Install development dependencies"
@echo "test Run tests"
@echo "publish Publish a release to PyPi (requires permissions)"
@echo ""
deps:
pip install -r requirements.txt
pip install tox sphinx sphinx-autobuild twine
test:
tox
publish:
rm -fr build dist
python setup.py sdist bdist_wheel
twine upload dist/*