From 0d3887531380e0c803b555752f64c7262e8e4664 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 5 Aug 2022 15:51:52 -0500 Subject: [PATCH] [py] build(setup.py): Add `project_urls` for PyPI (#10880) * build(setup.py): Add project_urls for PyPI * build(setup.py): Update documentation project_url --- py/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/py/setup.py b/py/setup.py index bd312401726c5..eeb0f291d3163 100755 --- a/py/setup.py +++ b/py/setup.py @@ -32,6 +32,12 @@ 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), 'url': 'https://github.com/SeleniumHQ/selenium/', + 'project_urls': { + 'Bug Tracker': 'https://github.com/SeleniumHQ/selenium/issues', + 'Changes': 'https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES', + 'Documentation': 'https://www.selenium.dev/documentation/overview/', + 'Source Code': 'https://github.com/SeleniumHQ/selenium/tree/trunk/py', + }, 'python_requires': '~=3.7', 'classifiers': ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',