This repository was archived by the owner on Jun 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
56 lines (47 loc) · 1.69 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
OUTPUT_FOLDER = 'docs/'
SITE_NAME = 'FlaskCon'
CFP_LINK = 'https://sessionize.com/flaskcon'
REVIEWERS = [
['David', '(Pallets)'],
['Adam Englander', '(Werkzeug Maintainer)'],
['Grey Li', '(Flask Maintainer)'],
['Julien Demoor', '(PyMUG)'],
['Miguel Grinberg', '(Flask Maintainer, PythonIreland)'],
['Ali-Akber Saifee', '(Flask-limiter)'],
['Steven Loria', '(Marshmallow & Flask-marshmallow)'],
['Namgyal Brisson', '(PyMUG)']
]
ORGANISERS = [
{"name": "PyMUG",
"logo": "/assets/img/pymug_new.svg",
"url": "https://pymug.com"},
{"name": "PythonIreland",
"logo": "/assets/img/pyie.png",
"url": "https://python.ie/"},
{"name": "BangPypers",
"logo": "/assets/img/bangpypers.png",
"url": "https://bangalore.python.org.in/"},
{"name": "PythonNigeria",
"logo": "/assets/img/pynigeria.svg",
"url": "http://pythonnigeria.org/"},
{"name": "PyCon China",
"logo": "/assets/img/python_china.jpg",
"url": "https://cn.pycon.org/en/index.html"},
{"name": "PythonMoscow",
"logo": "/assets/img/python_moscow.png",
"url": "http://www.moscowpython.ru/"},
{"name": "PyAmsterdam",
"logo": "/assets/img/python_amsterdam.svg",
"url": "https://py.amsterdam/"},
{"name": "GilPug",
"logo": "/assets/img/GilPUG.jpg",
"url": "http://gilpug.gitlab.io/"},
]
MEDIA = [
{"name": "PythonDiscord",
"logo": "/assets/img/python_discord.jpg",
"url": "https://discord.gg/python"},
{"name": "r/Flask",
"logo": "/assets/img/flask.png",
"url": "https://www.reddit.com/r/flask/"}
]