diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..612be9ef --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +recursive-include *.py +include setup.cfg +include README.md ChangeLog LICENSE CONTRIBUTORS +include *.txt diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..d0f4018c --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: all init doc test clean + +all: init test doc clean + +init: + pip install --upgrade -r requirements-dev.txt + +test: + python setup.py nosetests + +doc: + python setup.py build_sphinx + @echo + @echo DOC: "file://"$$(echo `pwd`/doc/build/html/index.html) + @echo + +clean: + find . -name '*.py[co]' -delete + rm -rf doc/build