pdfparanoia/Makefile

18 lines
248 B
Makefile
Raw Normal View History

2013-02-05 10:10:14 +01:00
SHELL := /bin/bash
test:
nosetests-2.7 -s --verbosity=2
clean:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
find . -type f -name "*.pyc" -exec rm '{}' \;
install:
2013-02-05 11:28:42 +01:00
python2.7 setup.py install
2013-02-05 10:10:14 +01:00
2013-02-06 00:24:47 +01:00
upload: clean
2013-02-05 11:28:42 +01:00
python2.7 setup.py sdist upload
2013-02-05 10:10:14 +01:00