Skip to content

Commit

Permalink
Merge pull request #2720 from pallets/setup-link
Browse files Browse the repository at this point in the history
Add project_urls so that PyPI will show GitHub stats.
  • Loading branch information
davidism committed Apr 26, 2018
2 parents 2ede0b8 + 5c8110d commit 062745b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Expand Up @@ -2,6 +2,8 @@
# -*- coding: utf-8 -*-
import io
import re
from collections import OrderedDict

from setuptools import setup

with io.open('README.rst', 'rt', encoding='utf8') as f:
Expand All @@ -14,6 +16,11 @@
name='Flask',
version=version,
url='https://www.palletsprojects.com/p/flask/',
project_urls=OrderedDict((
('Documentation', 'http://flask.pocoo.org/docs/'),
('Code', 'https://github.com/pallets/pallets-sphinx-themes'),
('Issue tracker', 'https://github.com/pallets/pallets-sphinx-themes/issues'),
)),
license='BSD',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
Expand Down

0 comments on commit 062745b

Please sign in to comment.