-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.spec
More file actions
72 lines (61 loc) · 1.21 KB
/
main.spec
File metadata and controls
72 lines (61 loc) · 1.21 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- mode: python ; coding: utf-8 -*-
from pathlib import Path
from PyInstaller import compat
Path('build/main').mkdir(parents=True, exist_ok=True)
Path('dist').mkdir(parents=True, exist_ok=True)
hiddenimports = [
'textractor.cli',
'textractor.cli.cli',
]
datas = []
excludes = [
'pytest',
'_pytest',
'tensorflow',
'tensorboard',
'torch.utils.tensorboard',
'torchaudio',
'speech_recognition',
]
use_strip = not compat.is_win
use_upx = not compat.is_win
a = Analysis(
['src/lwPython/main.py'],
pathex=['src'],
binaries=[],
datas=datas,
hiddenimports=hiddenimports,
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=excludes,
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='main',
debug=False,
bootloader_ignore_signals=False,
strip=use_strip,
upx=use_upx,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=use_strip,
upx=use_upx,
upx_exclude=[],
name='main',
)