Add Makefile with init, test, and docs tasks

This commit is contained in:
Trey Hunner 2013-08-07 00:33:13 -07:00
parent 0197c9e0f8
commit ed011eaeaa
2 changed files with 15 additions and 5 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
all: init docs test
init:
python setup.py develop
pip install tox coverage Sphinx
test:
coverage erase
tox
coverage html
docs: documentation
documentation:
python setup.py build_sphinx

View file

@ -1,5 +0,0 @@
#!/bin/sh
coverage erase
tox
coverage html