summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bda95c1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+SHELL := /bin/bash
+
+test:
+ nosetests-2.7 -s -v
+ nosetests-3.4 -s -v
+
+clean:
+ rm -fr build dist
+ rm -fr *.egg-info
+ find . -name *.pyc -exec rm {} \;
+ find . -name *.swp -exec rm {} \;
+
+install:
+ python3.4 setup.py install
+
+upload: clean
+ python3.4 setup.py sdist upload