summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEwout ter Hoeven <E.M.terHoeven@student.tudelft.nl>2022-10-05 20:10:51 +0200
committerda-woods <dw-git@d-woods.co.uk>2022-10-05 21:03:15 +0100
commitf2e8b2f3dca7436630b1b4a4d42305adcf173ece (patch)
treeb0c48706c0023261e0bc9dad27941c25687af4c4
parent5266b9c929a3e8348998b70df7561c0d7c3a0758 (diff)
downloadcython-f2e8b2f3dca7436630b1b4a4d42305adcf173ece.tar.gz
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.
-rwxr-xr-xsetup.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index b7043e5e7..1b10c5bd2 100755
--- a/setup.py
+++ b/setup.py
@@ -282,6 +282,13 @@ setup(
"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,