1 |
1a08ac9d
|
humkyung
|
# -*- mode: python -*-
|
2 |
|
|
|
3 |
26b3fef2
|
humkyung
|
winsparkle = '.venv\\Lib\\site-packages\\pywinsparkle\\libs\\x64\\WinSparkle.dll'
|
4 |
1a08ac9d
|
humkyung
|
block_cipher = None
|
5 |
|
|
|
6 |
eb2f9687
|
humkyung
|
a = Analysis(['.\\DTI_PID\\DTI_PID\\App.py','.\\DTI_PID\\DTI_PID\\TrainingImageListDialog.py'],
|
7 |
2eb2b4fb
|
esham21
|
pathex=['.\\DTI_PID\\DTI_PID', '.\\DTI_PID\\DTI_PID\\Commands', '.\\DTI_PID\\DTI_PID\\Shapes', '.\\DTI_PID\\DTI_PID\\UI'],
|
8 |
eb2f9687
|
humkyung
|
binaries=[('.\\DTI_PID\\DTI_PID\\bin64\\*.exe', 'bin64'),
|
9 |
|
|
('.\\DTI_PID\\DTI_PID\\bin64\\*.dll', 'bin64'),
|
10 |
e1e10a0e
|
esham21
|
('.\\DTI_PID\\DTI_PID\\cv2\\*.dll', 'cv2'),
|
11 |
eb2f9687
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\potrace.exe', '.'),
|
12 |
26b3fef2
|
humkyung
|
(winsparkle, '.')
|
13 |
eb2f9687
|
humkyung
|
],
|
14 |
|
|
datas=[('.\\DTI_PID\\DTI_PID\\*.qss', '.'),
|
15 |
bbcf500e
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\*.pdf', '.'),
|
16 |
3b8a801a
|
humkyung
|
('.\\*.html', '.'),
|
17 |
eb2f9687
|
humkyung
|
('.\\*.BMP', '.'),
|
18 |
|
|
('.\\DTI_PID\\DTI_PID\\db\\*.db', 'db'),
|
19 |
74fb859e
|
esham21
|
('.\\DTI_PID\\DTI_PID\\db\\*.syl', 'db'),
|
20 |
eb2f9687
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\translate\\*.qm', 'translate'),
|
21 |
|
|
('.\\DTI_PID\\DTI_PID\\Scripts\\*.sql', 'Scripts'),
|
22 |
ccc191e0
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\Scripts\\MSSQL\\*.sql', 'Scripts\\MSSQL'),
|
23 |
202edd8e
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\Datasheets\\*.xlsx', 'Datasheets'),
|
24 |
eb2f9687
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\res\\*.svg', 'res'),
|
25 |
4d9b7afb
|
humkyung
|
('.\\DTI_PID\\DTI_PID\\UI\\*.ui', 'UI'),
|
26 |
eb2f9687
|
humkyung
|
('.\\DTI_PID\DTI_PID\\Tesseract-OCR\\*.*', 'Tesseract-OCR'),
|
27 |
|
|
('.\\DTI_PID\DTI_PID\\Tesseract-OCR\\doc\\*', 'Tesseract-OCR\\doc'),
|
28 |
|
|
('.\\DTI_PID\DTI_PID\\Tesseract-OCR\\tessdata\\*.*', 'Tesseract-OCR\\tessdata'),
|
29 |
|
|
('.\\DTI_PID\DTI_PID\\Tesseract-OCR\\tessdata\\configs\\*', 'Tesseract-OCR\\tessdata\\configs'),
|
30 |
|
|
('.\\DTI_PID\DTI_PID\\Tesseract-OCR\\tessdata\\tessconfigs\\*', 'Tesseract-OCR\\tessdata\\tessconfigs')],
|
31 |
a4b07d6b
|
humkyung
|
hiddenimports=['tkinter', 'getmac'],
|
32 |
eb2f9687
|
humkyung
|
hookspath=[],
|
33 |
|
|
runtime_hooks=[],
|
34 |
|
|
excludes=[],
|
35 |
|
|
win_no_prefer_redirects=False,
|
36 |
|
|
win_private_assemblies=False,
|
37 |
|
|
cipher=block_cipher,
|
38 |
|
|
noarchive=False)
|
39 |
1a08ac9d
|
humkyung
|
pyz = PYZ(a.pure, a.zipped_data,
|
40 |
eb2f9687
|
humkyung
|
cipher=block_cipher)
|
41 |
1a08ac9d
|
humkyung
|
exe = EXE(pyz,
|
42 |
eb2f9687
|
humkyung
|
a.scripts,
|
43 |
|
|
[],
|
44 |
|
|
exclude_binaries=True,
|
45 |
|
|
name='ID2',
|
46 |
84849b9a
|
esham21
|
debug=False,
|
47 |
eb2f9687
|
humkyung
|
bootloader_ignore_signals=False,
|
48 |
|
|
strip=False,
|
49 |
|
|
upx=True,
|
50 |
84849b9a
|
esham21
|
console=False,
|
51 |
48cabe25
|
humkyung
|
icon='ID2.ico',
|
52 |
eb2f9687
|
humkyung
|
version='version.rc')
|
53 |
1a08ac9d
|
humkyung
|
coll = COLLECT(exe,
|
54 |
eb2f9687
|
humkyung
|
a.binaries,
|
55 |
|
|
a.zipfiles,
|
56 |
|
|
a.datas,
|
57 |
|
|
strip=False,
|
58 |
|
|
upx=True,
|
59 |
|
|
name='App') |