From 4215f740ab84975078fc0e98d33c55cc5b891f2e Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Wed, 5 Oct 2022 20:10:51 +0200 Subject: setup.py: Add project_urls for PyPI (#5064) Add project_urls dictionary to setup.py with URLs to the Cython documentation, funding, source code and bug tracker. This will add those URLs under the "Project links" section on https://pypi.org/project/cython, making it easy to find these resources directly from PyPI. --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1398c1574..26beca2f4 100755 --- a/setup.py +++ b/setup.py @@ -298,6 +298,13 @@ def run_build(): "Topic :: Software Development :: Compilers", "Topic :: Software Development :: Libraries :: Python Modules" ], + project_urls={ + "Documentation": "https://cython.readthedocs.io/", + "Donate": "https://cython.readthedocs.io/en/latest/src/donating.html", + "Source Code": "https://github.com/cython/cython", + "Bug Tracker": "https://github.com/cython/cython/issues", + "User Group": "https://groups.google.com/g/cython-users", + }, scripts=scripts, packages=packages, -- cgit v1.2.1