-
Notifications
You must be signed in to change notification settings - Fork 6
/
runserver.spec
44 lines (39 loc) · 951 Bytes
/
runserver.spec
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
# PyInstaller spec, run "pyinstaller runserver.spec" from repository root to build
a = Analysis(
['cms/bin/test_server.py'],
pathex=['.'],
hiddenimports=[
'markdown.extensions.extra',
'markdown.extensions.smart_strong',
'markdown.extensions.fenced_code',
'markdown.extensions.footnotes',
'markdown.extensions.attr_list',
'markdown.extensions.def_list',
'markdown.extensions.tables',
'markdown.extensions.abbr',
# Used by globals/get_browser_versions.py in web.adblockplus.org
'xml.dom.minidom',
],
excludes=[
'distutils',
'doctest',
'werkzeug',
# Mac-specific
'Carbon',
'Finder',
'StdSuites',
],
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='runserver',
debug=False,
strip=None,
upx=False,
console=True,
)