Skip to content

Commit 8915d1a

Browse files
committed
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/
1 parent 1c12e12 commit 8915d1a

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal = 1
3+
4+
[metadata]
5+
license_file = LICENSE

0 commit comments

Comments
 (0)