-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfbgui.spec
45 lines (39 loc) · 1.82 KB
/
fbgui.spec
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
# -*- mode: python -*-
block_cipher = None
a = Analysis(['fbgui\\install.py', 'fbgui\\baking_program.py', 'fbgui\\cal_program.py', 'fbgui\\constants.py',
'fbgui\\create_excel_table.py', 'fbgui\\data_container.py', 'fbgui\\laser_recorder.py',
'fbgui\\devices\\optical_switch.py', 'fbgui\\devices\\oven.py', 'fbgui\\devices\\sm125_laser.py',
'fbgui\\devices\\temperature_controller.py', 'fbgui\\excel_file_controller.py', 'fbgui\\exceptions.py',
'fbgui\\graph_toolbar.py', 'fbgui\\laser_data.py', 'fbgui\\messages.py', 'fbgui\\database_controller.py',
'fbgui\\graphing.py', 'fbgui\\helpers.py', 'fbgui\\main_program.py', 'fbgui\\options_frame.py',
'fbgui\\program.py', 'fbgui\\datatable.py', 'fbgui\\ui_helper.py', 'fbgui\\config_controller.py',
'fbgui\\reset_config.py', 'fbgui\\calibration_excel_container.py', 'fbgui\\excel_graph_helpers.py',
'fbgui\\baking_curve_fit.py'],
pathex=['C:\\Users\\phils\\Documents\\FbgUI\\fbgui'],
binaries=[],
datas=[('.\\fbgui\\assets', '.\\assets')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='fbgui',
debug=False,
strip=False,
upx=True,
console=False,
icon='.\\fbgui\\assets\\program_logo.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name='fbgui')