diff options
author | Jarrod Millman <jarrod.millman@gmail.com> | 2019-04-11 18:11:21 -0700 |
---|---|---|
committer | Jarrod Millman <jarrod.millman@gmail.com> | 2019-04-11 18:11:21 -0700 |
commit | 0486b6d7692798dabd3bcafa20aa87ce28ae0b90 (patch) | |
tree | 8fc1061bd6ccddfb835a27d361b8af9f2f69d69d | |
parent | f4a24b1f4779d1b9966efe2ad79cba21241ce500 (diff) | |
download | numpy-0486b6d7692798dabd3bcafa20aa87ce28ae0b90.tar.gz |
Add project_urls to setup
These are used by PyPI and other services.
-rwxr-xr-x | setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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"], |