File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33import io
44import re
5+ from collections import OrderedDict
6+
57from setuptools import setup
68
79with io .open ('README.rst' , 'rt' , encoding = 'utf8' ) as f :
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 = 'armin.ronacher@active-4.com' ,
2532 include_package_data = True ,
2633 zip_safe = False ,
2734 platforms = 'any' ,
28- project_urls = {
29- 'Bug Tracker' : 'https://github.com/pallets/flask/issues' ,
30- 'Documentation' : 'http://flask.pocoo.org/' ,
31- 'Source Code' : 'https://github.com/pallets/flask' ,
32- },
3335 install_requires = [
3436 'Werkzeug>=0.14' ,
3537 'Jinja2>=2.10' ,
You can’t perform that action at this time.
0 commit comments