PEP 621: Fix missing schemes in example project.urls (#2621)
PyPI seems to reject these as-is (probably expectedly).
This commit is contained in:
parent
b064613a34
commit
6b88b042ce
|
@ -490,10 +490,10 @@ Example
|
|||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "example.com"
|
||||
documentation = "readthedocs.org"
|
||||
repository = "github.com"
|
||||
changelog = "github.com/me/spam/blob/master/CHANGELOG.md"
|
||||
homepage = "https://example.com"
|
||||
documentation = "https://readthedocs.org"
|
||||
repository = "https://github.com"
|
||||
changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
|
||||
|
||||
[project.scripts]
|
||||
spam-cli = "spam:main_cli"
|
||||
|
|
Loading…
Reference in New Issue