From 8915d1af720d93850adf24a8fc9bd4cab7612d55 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sun, 5 Nov 2017 08:30:23 -0800 Subject: [PATCH] Add universal wheel support The current wheel on PyPI is listed as Python2 only. As this project is pure Python and supports both Python 2 and 3, it should be released as a universal wheel. As of now, Python 3 users do not get the benefits of the wheel package: * Faster installation * Avoids arbitrary code execution for installation by avoiding setup.py * Allows better caching for testing and continuous integration. * Creates .pyc files as part of installation to ensure they match the python interpreter used. * More consistent installs across platforms and machines. For more information on universal wheels, see: https://pythonwheels.com/ --- setup.cfg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ed8a958 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license_file = LICENSE