From bdea46f1d810b0519e709797e2850cbeac0ab4af Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 12 Apr 2019 09:32:58 -0700 Subject: [PATCH] DOC Add project_urls to setup.py (#13623) --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index fd9cd14b96304..cdcb60ba68e19 100755 --- a/setup.py +++ b/setup.py @@ -38,6 +38,11 @@ URL = 'http://scikit-learn.org' DOWNLOAD_URL = 'https://pypi.org/project/scikit-learn/#files' LICENSE = 'new BSD' +PROJECT_URLS = { + 'Bug Tracker': 'https://github.com/scikit-learn/scikit-learn/issues', + 'Documentation': 'https://scikit-learn.org/stable/documentation.html', + 'Source Code': 'https://github.com/scikit-learn/scikit-learn' +} # We can actually import a restricted version of sklearn that # does not need the compiled code @@ -220,6 +225,7 @@ def setup_package(): license=LICENSE, url=URL, download_url=DOWNLOAD_URL, + project_urls=PROJECT_URLS, version=VERSION, long_description=LONG_DESCRIPTION, classifiers=['Intended Audience :: Science/Research',