summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Back out changeset bc62e2cab087. It was accidentally pushed to the default ↵HEADmasterManuel Jacob2023-02-231-1/+1
| | | | branch.
* Use license_files instead of license_file in setup.cfg [metadata] section.Manuel Jacob2023-02-231-1/+1
| | | | | | When using license_file, setuptools prints a warning: “setuptools._deprecation_warning.SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead.”. The license_files key was introduced in “wheel” package Git commit 59976ab294e1b118f42cab404d95df66ed55f7e4 from 2018-07-16. The disadvantage of this change is that when using wheel < 0.32.0, the resulting wheel will not contain the license file in its .dist-info directory.
* Add project URLs to metadata and READMEproject-linksAnderson Bravalheri2022-06-301-0/+7
|
* Include license file in the generated wheel packageJon Dufresne2018-04-101-0/+2
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 Helps project comply with its own license: > The above copyright notice and this permission notice shall be included > in all copies or substantial portions of the Software.