Browse code

Add a list or extra URLs to distribution metadata

This should enable Warehouse PYPI implementation pypa/warehouse#3604
to pull data from GitHub and show it on the project page.

Sviatoslav Sydorenko authored on 2018/04/10 20:29:23
Showing 1 changed files
... ...
@@ -179,6 +179,12 @@ setup(
179 179
     author=__author__,
180 180
     author_email='info@ansible.com',
181 181
     url='https://ansible.com/',
182
+    project_urls={
183
+        'Bug Tracker': 'https://github.com/ansible/ansible/issues',
184
+        'CI: Shippable': 'https://app.shippable.com/github/ansible/ansible',
185
+        'Documentation': 'https://docs.ansible.com/ansible/',
186
+        'Source Code': 'https://github.com/ansible/ansible',
187
+    },
182 188
     license='GPLv3+',
183 189
     # Ansible will also make use of a system copy of python-six and
184 190
     # python-selectors2 if installed but use a Bundled copy if it's not.