Skip to content

Commit

Permalink
DOC Add project_urls to setup.py (scikit-learn#13623)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman authored and jeremiedbb committed Apr 25, 2019
1 parent 37b099b commit bdea46f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit bdea46f

Please sign in to comment.