From 06849158db41fd53237ac985eff7f40c40c5c2a6 Mon Sep 17 00:00:00 2001 From: Samuel Dion-Girardeau Date: Wed, 5 Apr 2023 20:08:45 -0400 Subject: [PATCH] Add release notes to project URLs in PyPI (#679) It's useful to be able to navigate to the release notes easily from the package index when upgrading. "Release Notes" is a special keyword that will have the scroll icon in the project page. A random example: * https://pypi.org/project/streamlit/ * https://github.com/streamlit/streamlit/blob/815a3ea6fa3e7f9099b479e8365bd3a5874ddc35/lib/setup.py#L111 Co-authored-by: Lahiru Maramba --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1ba2ffa92..a82bc47f3 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ long_description=long_description, url=about['__url__'], project_urls={ + 'Release Notes': 'https://firebase.google.com/support/release-notes/admin/python', 'Source': 'https://github.com/firebase/firebase-admin-python', }, author=about['__author__'],