Skip to content

Commit

Permalink
Added a makefile for common tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
epicserve committed Feb 16, 2016
1 parent 1cbc7cf commit 6715302
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6715302

Please sign in to comment.