From 717386b6bb6e917ebeeafaf364196c0708432615 Mon Sep 17 00:00:00 2001 From: Michael K Date: Mon, 9 Oct 2023 06:52:36 +0100 Subject: [PATCH] Add project urls to package metadata (#96) 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 d1f4db9..4a07818 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", + }, )