1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-12-04 23:15:52 +01:00
pdfparanoia/Makefile
2013-02-05 03:10:14 -06:00

18 lines
236 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:
python setup.py install
upload:
python setup.py sdist upload