From 8228c526ba32cf1a06d666c90c0c4da57291f119 Mon Sep 17 00:00:00 2001 From: oliverpool Date: Mon, 29 May 2017 13:32:14 +0200 Subject: [PATCH] add basic makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9dccd129 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: all test clean + +test: + python -m unittest -f + +install: + pip3 install -r Requirements.txt + python3 setup.py develop \ No newline at end of file