Skip to content

Commit 942b17c

Browse files
committed
Add universal wheel support
As djangosaml2 is a pure Python library, it can be packaged as a universal wheel. Advantages of wheels * Faster installation. * Avoids arbitrary code execution for installation. (Avoids 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. When you'd normally run python setup.py sdist upload, run instead python setup.py sdist bdist_wheel upload. For more information on wheels, see: http://pythonwheels.com/
1 parent a43bd5d commit 942b17c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)