Diff of /python/Makefile [000000] .. [a32498]

Switch to unified view

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