-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdl-plus.spec
executable file
·50 lines (46 loc) · 997 Bytes
/
dl-plus.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
45
46
47
48
49
50
from stdlib_list import stdlib_list
hiddenimports = [
m for m in stdlib_list()
if not m.startswith('ensurepip')
and not m.startswith('idlelib')
and not m.startswith('lib2to3')
and not m.startswith('test')
and not m.startswith('tkinter')
and not m.startswith('turtle')
and not m.startswith('venv')
]
a = Analysis( # noqa: F821
['src\\dl_plus\\__main__.py'],
pathex=['src'],
binaries=[],
datas=[],
hiddenimports=hiddenimports,
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=None,
noarchive=True,
)
pyz = PYZ( # noqa: F821
a.pure,
a.zipped_data,
cipher=None,
)
exe = EXE( # noqa: F821
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='dl-plus',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
)