1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2024-12-04 06:55:53 +01:00
pdfparanoia/Makefile
2020-09-07 09:33:54 -05:00

18 lines
253 B
Makefile

SHELL := /bin/bash
test:
nosetests -s --verbosity=2
clean:
rm -fr build dist
rm -fr *.egg-info
find . -name *.pyc -exec rm {} \;
find . -name *.swp -exec rm {} \;
install:
python3 setup.py install
upload: clean
python3 setup.py sdist upload