From bae7aea6eb044c5d36f47a0742e9cd49abbd19c5 Mon Sep 17 00:00:00 2001 From: Jeppe Fihl-Pearson Date: Wed, 26 Jun 2019 11:10:58 +0100 Subject: [PATCH] Add project URLs to package metadata This will add more links in the "Project links" section in the left hand sidebar on the PyPI page, liking to the bug tracker, documentation and source code. It will make it easier for users of the library and automated package updating tools to figure out what's changed, where to report issues and where to find the documentation for the package. --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 62b5d960e..ee9a71432 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,11 @@ def get_readme_md_contents(): license="BSD", keywords="datadog", url="https://www.datadoghq.com", + project_urls={ + "Bug Tracker": "https://github.com/DataDog/datadogpy/issues", + "Documentation": "https://datadogpy.readthedocs.io/en/latest/", + "Source Code": "https://github.com/DataDog/datadogpy", + }, entry_points={"console_scripts": ["dog = datadog.dogshell:main", "dogwrap = datadog.dogshell.wrap:main"]}, test_suite="tests", classifiers=[