Skip to content

Commit df0fda4

Browse files
committed
Improve ordering of PyPI links
1 parent 41ca134 commit df0fda4

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

emailproxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = 'Simon Robinson'
77
__copyright__ = 'Copyright (c) 2023 Simon Robinson'
88
__license__ = 'Apache 2.0'
9-
__version__ = '2023-11-10' # ISO 8601 (YYYY-MM-DD)
9+
__version__ = '2023-11-18' # ISO 8601 (YYYY-MM-DD)
1010
__package_version__ = '.'.join([str(int(i)) for i in __version__.split('-')]) # for pyproject.toml usage only
1111

1212
import abc

pyproject.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ py-modules = ["emailproxy"] # ignore other folders in the root directory (note t
3333
[project.scripts]
3434
emailproxy = "emailproxy:App"
3535

36-
[project.urls]
37-
"Homepage" = "https://github.com/simonrob/email-oauth2-proxy"
38-
"Changelog" = "https://github.com/simonrob/email-oauth2-proxy/releases"
36+
[project.urls] # shown in alphabetical order on PyPI, and there is no way to put a "Homepage" link first as with the setup.py approach (but see https://github.com/pypi/warehouse/blob/main/warehouse/templates/packaging/detail.html)
3937
"Documentation" = "https://github.com/simonrob/email-oauth2-proxy#email-oauth-20-proxy"
40-
"Bug Tracker" = "https://github.com/simonrob/email-oauth2-proxy/issues"
38+
"Release Notes" = "https://github.com/simonrob/email-oauth2-proxy/releases"
39+
"Report Issues" = "https://github.com/simonrob/email-oauth2-proxy/issues"
4140
"Source Code" = "https://github.com/simonrob/email-oauth2-proxy"
4241

4342
[tool.setuptools.dynamic]

0 commit comments

Comments
 (0)