-
-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathanylabeling.spec
More file actions
65 lines (61 loc) · 1.89 KB
/
anylabeling.spec
File metadata and controls
65 lines (61 loc) · 1.89 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
# -*- mode: python -*-
# vim: ft=python
import os
import sys
sys.setrecursionlimit(5000) # required on Windows
# Collect onnxruntime native DLLs (onnxruntime.dll, onnxruntime_providers_shared.dll).
# PyInstaller resolves imports but does NOT automatically bundle the DLLs that sit
# next to the .pyd extension inside the onnxruntime/capi package directory.
try:
import onnxruntime as _ort
_ort_capi = os.path.join(os.path.dirname(_ort.__file__), 'capi')
_ort_dlls = [
os.path.join(_ort_capi, f)
for f in os.listdir(_ort_capi)
if f.endswith('.dll')
]
# Place DLLs in both locations:
# onnxruntime/capi/ — matches package structure, found via DLL_LOAD_DIR
# . (root _MEIPASS) — found via PyInstaller's SetDllDirectory(_MEIPASS)
_ort_binaries = (
[(dll, 'onnxruntime/capi') for dll in _ort_dlls]
+ [(dll, '.') for dll in _ort_dlls]
)
except Exception:
_ort_binaries = []
a = Analysis(
['anylabeling/app.py'],
pathex=['anylabeling'],
binaries=_ort_binaries,
datas=[
('anylabeling/configs/auto_labeling/*.yaml', 'anylabeling/configs/auto_labeling'),
('anylabeling/configs/*.yaml', 'anylabeling/configs'),
('anylabeling/views/labeling/widgets/auto_labeling/auto_labeling.ui', 'anylabeling/views/labeling/widgets/auto_labeling')
],
hiddenimports=[],
hookspath=[],
runtime_hooks=['rthooks/rthook_onnxruntime.py'],
excludes=[],
)
pyz = PYZ(a.pure, a.zipped_data)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='anylabeling',
debug=False,
strip=False,
upx=False,
runtime_tmpdir=None,
console=False,
icon='anylabeling/resources/images/icon.icns',
)
app = BUNDLE(
exe,
name='AnyLabeling.app',
icon='anylabeling/resources/images/icon.icns',
bundle_identifier=None,
info_plist={'NSHighResolutionCapable': 'True'},
)