Browse Source

Merge pull request #2720 from pallets/setup-link

Add project_urls so that PyPI will show GitHub stats.
pull/2721/head
David Lord 7 years ago committed by GitHub
parent
commit
062745b23f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      setup.py

7
setup.py

@ -2,6 +2,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import io import io
import re import re
from collections import OrderedDict
from setuptools import setup from setuptools import setup
with io.open('README.rst', 'rt', encoding='utf8') as f: with io.open('README.rst', 'rt', encoding='utf8') as f:
@ -14,6 +16,11 @@ setup(
name='Flask', name='Flask',
version=version, version=version,
url='https://www.palletsprojects.com/p/flask/', 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', license='BSD',
author='Armin Ronacher', author='Armin Ronacher',
author_email='armin.ronacher@active-4.com', author_email='armin.ronacher@active-4.com',

Loading…
Cancel
Save