PEP 621: Fix missing schemes in example project.urls (#2621)

PyPI seems to reject these as-is (probably expectedly).
This commit is contained in:
Julian Berman 2022-05-30 17:07:29 -04:00 committed by GitHub
parent b064613a34
commit 6b88b042ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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"