Closed blag closed 4 years ago
Closing as dupe of #475
Sorry, I didn't notice that I had opened a duplicate PR. I edited this in GitHub and the first time I committed - to blag:patch-1
- it errored out (so I figured it didn't open a PR). Apologies for the noise.
The Python packaging specifications indicate that the
license
parameter tosetup()
should be used in one of the following cases:Classifier
fieldThis PR removes the explicit
license
parameter since the usage for this project does not fit any of those cases and it makes it more difficult to use tools like pip-licenses since it is not consistent with other projects that just haveLicense :: OSI Approved :: BSD License
as one of their trove classifiers.Please note that this does not change the license of the project in any way, and since this project already has a
License :: OSI Approved :: BSD License
trove classifier thelicense
parameter is redundant.Furthermore, I believe that the
classifier
option should be pluralized toclassifiers
, according to the setuptools documentation forsetup.cfg
(see the example).