diff options
author | Bryan Bishop <kanzure@gmail.com> | 2015-06-01 00:26:07 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2015-06-01 00:26:07 -0500 |
commit | 66b041cfbc69ed26ba536c34cdd997a96cae7ceb (patch) | |
tree | a38c43fb8a697d5a62a6c5b64aa052e733d6eb28 /Makefile | |
download | rpcblockchainexplorer-66b041cfbc69ed26ba536c34cdd997a96cae7ceb.tar.gz rpcblockchainexplorer-66b041cfbc69ed26ba536c34cdd997a96cae7ceb.zip |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
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 |