File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 77
88"""
99import sys
10- from collections import OrderedDict
1110
1211from setuptools import setup
1312from 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__' ],
You can’t perform that action at this time.
0 commit comments