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 1
1
"""tmuxp lives at <https://github.com/tmux-python/tmuxp>."""
2
2
import sys
3
- from collections import OrderedDict
4
3
5
4
from setuptools import setup
6
5
from setuptools .command .test import test as TestCommand
@@ -41,13 +40,11 @@ def run_tests(self):
41
40
name = about ['__title__' ],
42
41
version = about ['__version__' ],
43
42
url = about ['__github__' ],
44
- project_urls = OrderedDict (
45
- (
46
- ('Documentation' , about ['__docs__' ]),
47
- ('Code' , about ['__github__' ]),
48
- ('Issue tracker' , about ['__tracker__' ]),
49
- )
50
- ),
43
+ project_urls = {
44
+ 'Documentation' : about ['__docs__' ],
45
+ 'Code' : about ['__github__' ],
46
+ 'Issue tracker' : about ['__tracker__' ],
47
+ },
51
48
download_url = about ['__pypi__' ],
52
49
license = about ['__license__' ],
53
50
author = about ['__author__' ],
You can’t perform that action at this time.
0 commit comments