Feature Request
Currently
When you want to use the Other/Proprietary License license type you specify in your pyproject.toml file:
When uploaded to PyPi, the license shows as the following in the metadata section:
License: Other/Proprietary License (Proprietary)
Desired
We wish to specify our own License name for the Other/Proprietary License instead of the generic "Proprietary" such that we can put in links to our own licenses, or provide the name of the license if not natively supported by PyPi. Some examples are here:
Code
Having a dig around the code seems to be around here
|
_licenses["proprietary"] = License("Proprietary", "Proprietary", False, False) |
https://github.com/python-poetry/poetry/blob/master/poetry/spdx/license.py
Feature Request
Currently
When you want to use the Other/Proprietary License license type you specify in your
pyproject.tomlfile:When uploaded to PyPi, the license shows as the following in the metadata section:
Desired
We wish to specify our own License name for the Other/Proprietary License instead of the generic "Proprietary" such that we can put in links to our own licenses, or provide the name of the license if not natively supported by PyPi. Some examples are here:
Code
Having a dig around the code seems to be around here
poetry/poetry/spdx/__init__.py
Line 48 in ed44342
https://github.com/python-poetry/poetry/blob/master/poetry/spdx/license.py