mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
20 lines
406 B
Makefile
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/*
|