TIL: Poetry PyPI Project URLS
Poetry has its own location for urls
in the [tool.poetry.urls] table. Per the Poetry documentation on urls:
"In addition to the basic urls (homepage, repository and documentation), you can specify any custom url in the urls section."
[tool.poetry.urls]
changelog = "https://github.com/myghname/projectname/releases"
documentation = "https://myghname.github.io/dataclasses-json/"
issues = "https://github.com/myghname/projectname/issues"

Tags: python packaging TIL