Files
tableprint/Makefile
Niru Maheswaranathan 4fc783a1f2 Updated Makefile
2016-10-07 11:45:15 -07:00

20 lines
332 B
Makefile

all:
python setup.py install
develop:
python setup.py develop
upload:
python setup.py sdist upload
test2:
python2 /Users/nirum/anaconda/bin/nosetests --logging-level=INFO
test:
nosetests -v --with-coverage --cover-package=tableprint --logging-level=INFO
clean:
rm -rf tableprint.egg-info
rm -f *.pyc
rm -rf __pycache__