From 8889fe49dbe92f3a2c21187888b9331ed633478c Mon Sep 17 00:00:00 2001 From: Faerbit Date: Fri, 5 May 2017 04:00:59 +0200 Subject: [PATCH] Another try at uploading to PyPi. --- .gitignore | 1 + Makefile | 11 +++++++++++ paperize/main.py | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 Makefile 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