Updated Python packaging code to create Wheel packages - changed distribution script to use setuptools instead of distutils, added setup.cfg.

pull/4/head
Nayuki Minase 9 years ago
parent 83aae7263f
commit 0cc355344d

@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

@ -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",

Loading…
Cancel
Save