From e6fda8fc9df8feb4095d0c0f58bba47152bb094c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=A4ufl?= Date: Thu, 5 Oct 2023 16:51:20 +0200 Subject: [PATCH] Add project urls to package metadata This adds the links to PyPI. To see that in action check out https://pypi.org/project/spacy/ (source code: https://github.com/explosion/spaCy/pull/7728, but for declarative packaging config) --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index a33f92d..175137a 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,10 @@ def setup_package(): "Programming Language :: Python :: 3.10", ], zip_safe=False, + project_urls={ + "Release notes": "https://github.com/explosion/spacy-stanza/releases", + "Source": "https://github.com/explosion/spacy-stanza", + }, )