blob: bda95c18fcbfce5253b68405577dafa2bd43b862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|