summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2019-04-11 18:11:21 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2019-04-11 18:11:21 -0700
commit0486b6d7692798dabd3bcafa20aa87ce28ae0b90 (patch)
tree8fc1061bd6ccddfb835a27d361b8af9f2f69d69d
parentf4a24b1f4779d1b9966efe2ad79cba21241ce500 (diff)
downloadnumpy-0486b6d7692798dabd3bcafa20aa87ce28ae0b90.tar.gz
Add project_urls to setup
These are used by PyPI and other services.
-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"],