forked from orbit-oss/flask
Merge pull request #2720 from pallets/setup-link
Add project_urls so that PyPI will show GitHub stats.
This commit is contained in:
commit
062745b23f
1 changed files with 7 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue