mirror of
https://github.com/kanzure/pdfparanoia.git
synced 2024-12-04 15:05:52 +01:00
18 lines
253 B
Makefile
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
|
|
|