diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8b2eb2b --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +test: + @cd tests && PYTHONPATH=../ py.test + +publish-test: + @python setup.py sdist upload -r pypi + @python setup.py bdist_wheel upload -r pypi + +publish-pypi: + @python setup.py sdist upload -r pypi + @python setup.py bdist_wheel upload -r pypi + +.PHONY: test publish-test publish-pypi |