summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Remove universal=1 from setup.cfgTomaz Solc2021-09-091-3/+0
| | | | | | This prevents the wheel from being installed on Python 2. https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels
* Include license file in the generated wheel packageJon Dufresne2017-10-151-0/+3
| | | | | | | | The wheel package format supports including the license file. This is done using the [metadata] section in the setup.cfg file. For additional information on this feature, see: https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
* Release as a universal wheelAdam Chainz2016-10-201-0/+2
By releasing as a [Python wheel](http://pythonwheels.com/) as well as a source distribution, you can speed up end user’s installs. After merging this command, to release you just need to run `python setup.py clean sdist bdist_wheel upload`.