[a32498]: / python / Makefile

Download this file

18 lines (12 with data), 261 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
SHELL := /bin/bash
test:
nosetests-2.7 -s --verbosity=2
clean:
rm -fr build dist
rm -fr *.egg-info
find . -name *.pyc -exec rm {} \;
find . -name *.swp -exec rm {} \;
install:
python2.7 setup.py install
upload: clean
python2.7 setup.py sdist upload