diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-04-12 09:53:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-12 09:53:55 +0200 |
commit | 4ee2da410c4de951cd259dd5308d482f03dc6f25 (patch) | |
tree | 787a6d644ccf90e0dfd45fa68fe0bd5ff6fac31e | |
parent | 7dbb325c9be319eaf2ca288b798e4f9417fad042 (diff) | |
parent | 0486b6d7692798dabd3bcafa20aa87ce28ae0b90 (diff) | |
download | numpy-4ee2da410c4de951cd259dd5308d482f03dc6f25.tar.gz |
Merge pull request #13310 from jarrodmillman/project_urls
Add project_urls to setup
-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"], |