Skip to content

Commit 5662560

Browse files
committed
Add project_urls for pypi
1 parent aedabe9 commit 5662560

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

setup.py

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
88
"""
99
import sys
10+
from collections import OrderedDict
1011

1112
from setuptools import setup
1213
from setuptools.command.test import test as TestCommand
@@ -44,6 +45,13 @@ def run_tests(self):
4445
name=about['__title__'],
4546
version=about['__version__'],
4647
url=about['__github__'],
48+
project_urls=OrderedDict(
49+
(
50+
('Documentation', about['__docs__']),
51+
('Code', about['__github__']),
52+
('Issue tracker', about['__tracker__']),
53+
)
54+
),
4755
download_url=about['__pypi__'],
4856
license=about['__license__'],
4957
author=about['__author__'],

0 commit comments

Comments
 (0)