How to setup home-page in pyproject.toml #3318
-
I follow this guide and code my pyproject.toml like this: ...
[project]
name='[package_name]'
...
urls = {'home-page' = 'xxx.xxx'} When I install the package and show info of package by using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @se7enXF, which version of setuptools are you using? Until recently Some part of the community understands that |
Beta Was this translation helpful? Give feedback.
Hi @se7enXF, which version of setuptools are you using?
Until recently
setuptools
would backfillHomepage
automatically based onurl.homepage
(home-page/Home-page/Homepage
etc...), but then some users provided feedback about this behaviour not being desirable (You can follow the discussion here: pypi/warehouse#11220, and have a look on the patch here: 1cfa27c).Some part of the community understands that
Project-URL: Homepage, http://...
is equivalent toHome-page: http://...
, and thatHome-page: ...
should be deprecated.