1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-05-29 07:08:03 +02:00
pdfparanoia/Makefile
2013-02-06 17:39:42 -06:00

18 lines
261 B
Makefile

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