We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8447f0d commit b534cd3Copy full SHA for b534cd3
setup.py
@@ -1,6 +1,5 @@
1
"""tmuxp lives at <https://github.com/tmux-python/tmuxp>."""
2
import sys
3
-from collections import OrderedDict
4
5
from setuptools import setup
6
from setuptools.command.test import test as TestCommand
@@ -41,13 +40,11 @@ def run_tests(self):
41
40
name=about['__title__'],
42
version=about['__version__'],
43
url=about['__github__'],
44
- project_urls=OrderedDict(
45
- (
46
- ('Documentation', about['__docs__']),
47
- ('Code', about['__github__']),
48
- ('Issue tracker', about['__tracker__']),
49
- )
50
- ),
+ project_urls={
+ 'Documentation': about['__docs__'],
+ 'Code': about['__github__'],
+ 'Issue tracker': about['__tracker__'],
+ },
51
download_url=about['__pypi__'],
52
license=about['__license__'],
53
author=about['__author__'],
0 commit comments