From aaec673c7c6e3e3d26a11500d81a776ed6cae64b Mon Sep 17 00:00:00 2001 From: martinrusev Date: Mon, 18 Sep 2017 10:21:03 +0200 Subject: [PATCH] Add make as a wrapper for common python operations --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1733cfe --- /dev/null +++ b/Makefile @@ -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 \ No newline at end of file