summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-04-12 09:53:55 +0200
committerGitHub <noreply@github.com>2019-04-12 09:53:55 +0200
commit4ee2da410c4de951cd259dd5308d482f03dc6f25 (patch)
tree787a6d644ccf90e0dfd45fa68fe0bd5ff6fac31e
parent7dbb325c9be319eaf2ca288b798e4f9417fad042 (diff)
parent0486b6d7692798dabd3bcafa20aa87ce28ae0b90 (diff)
downloadnumpy-4ee2da410c4de951cd259dd5308d482f03dc6f25.tar.gz
Merge pull request #13310 from jarrodmillman/project_urls
Add project_urls to setup
-rwxr-xr-xsetup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index da25ddde5..6c0577006 100755
--- a/setup.py
+++ b/setup.py
@@ -364,6 +364,11 @@ def setup_package():
url = "https://www.numpy.org",
author = "Travis E. Oliphant et al.",
download_url = "https://pypi.python.org/pypi/numpy",
+ project_urls={
+ "Bug Tracker": "https://github.com/numpy/numpy/issues",
+ "Documentation": "https://docs.scipy.org/doc/numpy/",
+ "Source Code": "https://github.com/numpy/numpy",
+ },
license = 'BSD',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],