Add make as a wrapper for common python operations

This commit is contained in:
martinrusev
2017-09-18 10:21:03 +02:00
parent 8d3b897a7a
commit aaec673c7c

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
upload_to_pypi:
pip install twine setuptools
rm -rf dist/*
rm -rf build/*
python setup.py sdist build
twine upload dist/*
test:
nosetests -v