From 59eaf315d0e25ea8189e63d4f448d9808f8eb85d Mon Sep 17 00:00:00 2001 From: Tomo <68489118+tomodachi94@users.noreply.github.com> Date: Wed, 24 Aug 2022 06:07:02 -0700 Subject: Add project URLs to PyPI listing (#71) This was done by adding a dictionary, called project_urls, to the parameters of the setup function in setup.py --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 5b4dd4c..9438aab 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,11 @@ setup(name="Paste", author="Chris Dent", author_email="chris.dent@gmail.com", url="https://pythonpaste.readthedocs.io/", + project_urls={ + "Source": "https://github.com/cdent/paste", + "Bug Tracker": "https://github.com/cdent/paste/issues", + "Documentation": "https://pythonpaste.readthedocs.io" + }, license="MIT", packages=find_packages(exclude=['ez_setup', 'examples', 'packages', 'tests*']), package_data=finddata.find_package_data( -- cgit v1.2.1