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 e16e63f commit bb984ddCopy full SHA for bb984dd
setup.py
@@ -1,5 +1,6 @@
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
@@ -40,6 +41,13 @@ def run_tests(self):
40
41
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
+ ),
51
download_url=about['__pypi__'],
52
license=about['__license__'],
53
author=about['__author__'],
0 commit comments