Skip to content

Commit 062745b

Browse files
authored
Merge pull request #2720 from pallets/setup-link
Add project_urls so that PyPI will show GitHub stats.
2 parents 2ede0b8 + 5c8110d commit 062745b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

setup.py

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# -*- coding: utf-8 -*-
33
import io
44
import re
5+
from collections import OrderedDict
6+
57
from setuptools import setup
68

79
with io.open('README.rst', 'rt', encoding='utf8') as f:
@@ -14,6 +16,11 @@
1416
name='Flask',
1517
version=version,
1618
url='https://www.palletsprojects.com/p/flask/',
19+
project_urls=OrderedDict((
20+
('Documentation', 'http://flask.pocoo.org/docs/'),
21+
('Code', 'https://github.com/pallets/pallets-sphinx-themes'),
22+
('Issue tracker', 'https://github.com/pallets/pallets-sphinx-themes/issues'),
23+
)),
1724
license='BSD',
1825
author='Armin Ronacher',
1926
author_email='[email protected]',

0 commit comments

Comments
 (0)