diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..63909ff --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: build + +build: clean + python setup.py sdist bdist_wheel + +upload: clean build + twine upload dist/* + +clean: + rm -rf build dist *.egg-info + diff --git a/paperize/main.py b/paperize/main.py index 377be19..e3f3ae8 100755 --- a/paperize/main.py +++ b/paperize/main.py @@ -9,7 +9,7 @@ from os.path import join, isfile from tempfile import TemporaryDirectory from hashlib import sha256 -PAPERIZE_VERSION = "v1.0.1" +PAPERIZE_VERSION = "v1.0.2" QR_VERSION = 21