From 010951f8a69ccbf061b667b66e72ada91e0eb35e Mon Sep 17 00:00:00 2001 From: Max Zhao Date: Sat, 4 Apr 2020 16:12:37 +0200 Subject: [PATCH] Adding makefile for creating release --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..905d0f8 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +# Build packaged wheel for flowCat. +build: + python3 setup.py sdist bdist_wheel + +# Will load the current project tree as a python library. Useful for making +# changes to flowCat. +devel: + python3 setup.py devel + +# Remove build directories created by build. +clean: + rm -r build + rm -r dist