Commit 942b17c
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
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
0 commit comments