mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Added a makefile for common tasks
This commit is contained in:
parent
1cbc7cf370
commit
6715302528
1 changed files with 21 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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
|
||||
|
||||
test:
|
||||
tox
|
||||
|
||||
publish:
|
||||
python setup.py register
|
||||
python setup.py sdist upload
|
||||
python setup.py bdist_wheel --universal upload
|
||||
rm -fr build dist .egg requests.egg-info
|
||||
Loading…
Reference in a new issue