We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2ede0b8 + 5c8110d commit 062745bCopy full SHA for 062745b
setup.py
@@ -2,6 +2,8 @@
2
# -*- coding: utf-8 -*-
3
import io
4
import re
5
+from collections import OrderedDict
6
+
7
from setuptools import setup
8
9
with io.open('README.rst', 'rt', encoding='utf8') as f:
@@ -14,6 +16,11 @@
14
16
name='Flask',
15
17
version=version,
18
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
+ )),
24
license='BSD',
25
author='Armin Ronacher',
26
author_email='armin.ronacher@active-4.com',
0 commit comments