-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathInvigo.spec
More file actions
46 lines (41 loc) · 1.06 KB
/
Invigo.spec
File metadata and controls
46 lines (41 loc) · 1.06 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
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_submodules
# Essential to solve ImportError: DLL load failed while importing _extra: The specified procedure could not be found.
hidden = collect_submodules('pymupdf')
# Essentail to solve ImportError: DLL load failed while importing _multiarray_umath: The specified module could not be found.
hidden += collect_submodules('numpy')
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=hidden,
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['watchdog'],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='Invigo',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['icons\\icon.ico'],
)