Add additional project urls to setup.py
According to: https://packaging.python.org/tutorials/distributing-packages/#project-urls Those URLs are displayed in the project page in Warehouse (new PyPI).
This commit is contained in:
parent
e012dbe346
commit
37ee4fbc48
4
setup.py
4
setup.py
|
@ -87,6 +87,10 @@ def main():
|
|||
'write_to': '_pytest/_version.py',
|
||||
},
|
||||
url='http://pytest.org',
|
||||
project_urls={
|
||||
'Source': 'https://github.com/pytest-dev/pytest',
|
||||
'Tracker': 'https://github.com/pytest-dev/pytest/issues',
|
||||
},
|
||||
license='MIT license',
|
||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||
author=(
|
||||
|
|
Loading…
Reference in New Issue