1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2025-02-11 05:03:11 +01:00
pdfparanoia/Makefile

18 lines
253 B
Makefile
Raw Permalink Normal View History

2013-02-05 03:10:14 -06:00
SHELL := /bin/bash
test:
2020-09-07 09:25:12 -05:00
nosetests -s --verbosity=2
2013-02-05 03:10:14 -06:00
clean:
2013-02-06 17:39:38 -06:00
rm -fr build dist
2013-02-05 03:10:14 -06:00
rm -fr *.egg-info
2013-02-06 17:39:38 -06:00
find . -name *.pyc -exec rm {} \;
find . -name *.swp -exec rm {} \;
2013-02-05 03:10:14 -06:00
install:
2020-09-07 09:33:54 -05:00
python3 setup.py install
2013-02-05 03:10:14 -06:00
2013-02-05 17:24:47 -06:00
upload: clean
2020-09-07 09:33:54 -05:00
python3 setup.py sdist upload
2013-02-05 03:10:14 -06:00