We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aedabe9 commit 5662560Copy full SHA for 5662560
setup.py
@@ -7,6 +7,7 @@
7
8
"""
9
import sys
10
+from collections import OrderedDict
11
12
from setuptools import setup
13
from setuptools.command.test import test as TestCommand
@@ -44,6 +45,13 @@ def run_tests(self):
44
45
name=about['__title__'],
46
version=about['__version__'],
47
url=about['__github__'],
48
+ project_urls=OrderedDict(
49
+ (
50
+ ('Documentation', about['__docs__']),
51
+ ('Code', about['__github__']),
52
+ ('Issue tracker', about['__tracker__']),
53
+ )
54
+ ),
55
download_url=about['__pypi__'],
56
license=about['__license__'],
57
author=about['__author__'],
0 commit comments