From a5d900003bade2ce6eff5a180a2d3095f55bad33 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 15 Jul 2022 07:46:25 -0500 Subject: [PATCH 1/2] build(setup.py): Add project_urls for PyPI --- py/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/py/setup.py b/py/setup.py index bd312401726c5..4d89ae387dba3 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://seleniumhq.github.io/selenium/docs/api/py/api.html', + 'Source Code': 'https://github.com/SeleniumHQ/selenium/tree/trunk/py', + }, 'python_requires': '~=3.7', 'classifiers': ['Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', From 4664fe02ccfa1527866515f80ab14cdb6cad3ce9 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Fri, 5 Aug 2022 07:42:13 -0500 Subject: [PATCH 2/2] build(setup.py): Update documentation project_url --- py/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/setup.py b/py/setup.py index 4d89ae387dba3..eeb0f291d3163 100755 --- a/py/setup.py +++ b/py/setup.py @@ -35,7 +35,7 @@ 'project_urls': { 'Bug Tracker': 'https://github.com/SeleniumHQ/selenium/issues', 'Changes': 'https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES', - 'Documentation': 'https://seleniumhq.github.io/selenium/docs/api/py/api.html', + 'Documentation': 'https://www.selenium.dev/documentation/overview/', 'Source Code': 'https://github.com/SeleniumHQ/selenium/tree/trunk/py', }, 'python_requires': '~=3.7',