diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c736206 --- /dev/null +++ b/Makefile @@ -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 diff --git a/runtests.sh b/runtests.sh deleted file mode 100755 index a105e34..0000000 --- a/runtests.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -coverage erase -tox -coverage html