Skip to content

Commit 0daf9d1

Browse files
committed
Use plain dict for project_urls
1 parent ce8753f commit 0daf9d1

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

setup.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
88
"""
99
import sys
10-
from collections import OrderedDict
1110

1211
from setuptools import setup
1312
from setuptools.command.test import test as TestCommand
@@ -45,14 +44,12 @@ def run_tests(self):
4544
name=about['__title__'],
4645
version=about['__version__'],
4746
url=about['__github__'],
48-
project_urls=OrderedDict(
49-
(
50-
('Documentation', about['__docs__']),
51-
('Code', about['__github__']),
52-
('Issue tracker', about['__tracker__']),
53-
)
54-
),
5547
download_url=about['__pypi__'],
48+
project_urls={
49+
'Documentation': about['__docs__'],
50+
'Code': about['__github__'],
51+
'Issue tracker': about['__tracker__'],
52+
},
5653
license=about['__license__'],
5754
author=about['__author__'],
5855
author_email=about['__email__'],

0 commit comments

Comments
 (0)