From 2fd18793c1fc3fedb1b0fed5f3605924cc8ad22f Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 9 Sep 2020 09:17:42 +0100 Subject: [PATCH] Add project_urls to setup.py These links make it easier to jump from PyPI to the respective page. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index b183a1f9..664efc8e 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,10 @@ setup( author="Joe Rickerby", author_email='joerick@mac.com', url='https://github.com/joerick/cibuildwheel', + project_urls={ + 'Changelog': 'https://github.com/joerick/cibuildwheel#changelog', + 'Documentation': 'https://cibuildwheel.readthedocs.io/', + }, packages=['cibuildwheel', ], license="BSD", zip_safe=False,