mirror of
https://github.com/JDM170/SaveWizard
synced 2025-04-20 22:30:42 +07:00
* Updated build.spec for PyInstaller build * Some code and typo fixes Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
34 lines
567 B
Python
34 lines
567 B
Python
# -*- mode: python ; coding: utf-8 -*-
|
|
|
|
app = Analysis(
|
|
['init_main_program.py'],
|
|
pathex=['.'],
|
|
datas=[
|
|
('configs/ats', 'configs/ats'),
|
|
('configs/ets2', 'configs/ets2')
|
|
]
|
|
)
|
|
|
|
app_pyz = PYZ(app.pure, app.zipped_data)
|
|
|
|
app_exe = EXE(
|
|
app_pyz,
|
|
app.scripts,
|
|
[],
|
|
exclude_binaries=True,
|
|
name='SaveWizard',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
console=False
|
|
)
|
|
app_coll = COLLECT(
|
|
app_exe,
|
|
app.binaries,
|
|
app.zipfiles,
|
|
app.datas,
|
|
strip=False,
|
|
name='app_build'
|
|
)
|
|
|