Skip to content

Commit bb984dd

Browse files
committed
📦 Add project_urls for pypi (Fixes #492)
1 parent e16e63f commit bb984dd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""tmuxp lives at <https://github.com/tmux-python/tmuxp>."""
22
import sys
3+
from collections import OrderedDict
34

45
from setuptools import setup
56
from setuptools.command.test import test as TestCommand
@@ -40,6 +41,13 @@ def run_tests(self):
4041
name=about['__title__'],
4142
version=about['__version__'],
4243
url=about['__github__'],
44+
project_urls=OrderedDict(
45+
(
46+
('Documentation', about['__docs__']),
47+
('Code', about['__github__']),
48+
('Issue tracker', about['__tracker__']),
49+
)
50+
),
4351
download_url=about['__pypi__'],
4452
license=about['__license__'],
4553
author=about['__author__'],

0 commit comments

Comments
 (0)