Skip to content

Commit

Permalink
Add project URLs to package metadata (DataDog#413)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Tenzer authored and David Bouchare committed Oct 25, 2019
1 parent 151d7a1 commit 6469bb4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit 6469bb4

Please sign in to comment.