django-categories/Makefile

21 lines
406 B
Makefile
Raw Normal View History

2016-02-16 16:49:36 +00:00
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
2019-06-26 19:21:36 +00:00
pip install tox sphinx sphinx-autobuild twine
2016-02-16 16:49:36 +00:00
test:
tox
publish:
2020-03-06 17:14:46 +00:00
rm -fr build dist
2019-06-26 19:21:36 +00:00
python setup.py sdist bdist_wheel
twine upload dist/*