1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-06-10 04:39:51 +02:00
pdfparanoia/Makefile
2013-02-05 04:29:16 -06:00

18 lines
242 B
Makefile

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:
python2.7 setup.py install
upload:
python2.7 setup.py sdist upload