From 66b041cfbc69ed26ba536c34cdd997a96cae7ceb Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Mon, 1 Jun 2015 00:26:07 -0500 Subject: initial commit --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3