From 0cc355344d6f8109c3c7358bfe7a90dede4efd36 Mon Sep 17 00:00:00 2001 From: Nayuki Minase Date: Mon, 25 Apr 2016 22:11:47 +0000 Subject: [PATCH] Updated Python packaging code to create Wheel packages - changed distribution script to use setuptools instead of distutils, added setup.cfg. --- python/setup.cfg | 2 ++ python/setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 python/setup.cfg diff --git a/python/setup.cfg b/python/setup.cfg new file mode 100644 index 0000000..2a9acf1 --- /dev/null +++ b/python/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1 diff --git a/python/setup.py b/python/setup.py index e212a20..032e106 100644 --- a/python/setup.py +++ b/python/setup.py @@ -22,10 +22,10 @@ # Software. # -import distutils.core +import setuptools -distutils.core.setup( +setuptools.setup( name = "qrcodegen", description = "High quality QR Code generator library for Python 2 and 3", version = "1.0.0",