File tree 1 file changed +7
-5
lines changed 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
# -*- coding: utf-8 -*-
3
3
import io
4
4
import re
5
+ from collections import OrderedDict
6
+
5
7
from setuptools import setup
6
8
7
9
with io .open ('README.rst' , 'rt' , encoding = 'utf8' ) as f :
14
16
name = 'Flask' ,
15
17
version = version ,
16
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
+ )),
17
24
license = 'BSD' ,
18
25
author = 'Armin Ronacher' ,
19
26
25
32
include_package_data = True ,
26
33
zip_safe = False ,
27
34
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
- },
33
35
install_requires = [
34
36
'Werkzeug>=0.14' ,
35
37
'Jinja2>=2.10' ,
You can’t perform that action at this time.
0 commit comments