From 9e4860ccd8ad97aa70188fc0e35c0f766c203b28 Mon Sep 17 00:00:00 2001 From: George Hickman Date: Tue, 22 Oct 2019 20:31:48 +0100 Subject: [PATCH] Add Documentation URL (#2499) This adds a [Documentation URL](https://packaging.python.org/guides/distributing-packages-using-setuptools/#project-urls), which will display in the left-hand nav of the projects PyPI page, allowing users arriving there to get to the documentation slightly faster. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ff4d9720a..a45b2b589 100755 --- a/setup.py +++ b/setup.py @@ -94,4 +94,7 @@ setup( "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Testing", ], + project_urls={ + "Documentation": "http://docs.getmoto.org/en/latest/", + }, )