hytos / App.spec @ d8792307
이력 | 보기 | 이력해설 | 다운로드 (2.28 KB)
1 |
# -*- mode: python -*- |
---|---|
2 |
|
3 |
block_cipher = None |
4 |
|
5 |
a = Analysis(['.\\HYTOS\\HYTOS\\App.py'], |
6 |
pathex=['.\\HYTOS\\HYTOS', '.\\HYTOS\\HYTOS\\Commands', '.\\HYTOS\\HYTOS\\Shapes', '.\\HYTOS\\HYTOS\\UI'], |
7 |
binaries=[], |
8 |
datas=[('.\\HYTOS\\HYTOS\\*.qss', '.'), |
9 |
('.\\*.html', '.'), |
10 |
('.\\*.BMP', '.'), |
11 |
('.\\HYTOS\\HYTOS\\*.pdf', '.'), |
12 |
('.\\HYTOS\\HYTOS\\db\\*.db', 'db'), |
13 |
('.\\HYTOS\\HYTOS\\Templates\\*.xlsx', 'Templates'), |
14 |
('.\\HYTOS\\HYTOS\\Templates\\*.png', 'Templates'), |
15 |
('.\\HYTOS\\HYTOS\\translate\\*.qm', 'translate'), |
16 |
('.\\HYTOS\\HYTOS\\Scripts\\*.sql', 'Scripts'), |
17 |
('.\\HYTOS\\HYTOS\\res\\*.svg', 'res'), |
18 |
], |
19 |
hiddenimports=['tkinter'], |
20 |
hookspath=[], |
21 |
runtime_hooks=[], |
22 |
excludes=[], |
23 |
win_no_prefer_redirects=False, |
24 |
win_private_assemblies=False, |
25 |
cipher=block_cipher, |
26 |
noarchive=False) |
27 |
pyz = PYZ(a.pure, a.zipped_data, |
28 |
cipher=block_cipher) |
29 |
exe = EXE(pyz, |
30 |
a.scripts, |
31 |
[], |
32 |
exclude_binaries=True, |
33 |
name='HYTOS', |
34 |
debug=False, |
35 |
bootloader_ignore_signals=False, |
36 |
strip=False, |
37 |
upx=True, |
38 |
console=False, |
39 |
icon='HYTOS.ico', |
40 |
version='version.rc') |
41 |
|
42 |
coll = COLLECT(exe, |
43 |
a.binaries, |
44 |
a.zipfiles, |
45 |
a.datas, |
46 |
strip=False, |
47 |
upx=True, |
48 |
name='App') |
49 |
|
50 |
foo = Analysis(['.\\HYTOS\\HYTOS\\License.py'], |
51 |
pathex=['.\\HYTOS\\HYTOS', '.\\HYTOS\\HYTOS\\UI'], |
52 |
binaries=[], |
53 |
datas=[], |
54 |
hiddenimports=['tkinter'], |
55 |
hookspath=[], |
56 |
runtime_hooks=[], |
57 |
excludes=[], |
58 |
win_no_prefer_redirects=False, |
59 |
win_private_assemblies=False, |
60 |
cipher=block_cipher, |
61 |
noarchive=False) |
62 |
license = EXE(pyz, |
63 |
foo.scripts, |
64 |
[], |
65 |
exclude_binaries=True, |
66 |
name='License', |
67 |
debug=False, |
68 |
bootloader_ignore_signals=False, |
69 |
strip=False, |
70 |
upx=True, |
71 |
console=False, |
72 |
icon='HYTOS.ico', |
73 |
version='version.rc') |
74 |
coll = COLLECT(license, |
75 |
foo.binaries, |
76 |
foo.zipfiles, |
77 |
foo.datas, |
78 |
strip=False, |
79 |
upx=True, |
80 |
name='License') |