mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-01-05 09:18:06 -08:00
36 lines
928 B
Python
36 lines
928 B
Python
# -*- mode: python -*-
|
|
|
|
block_cipher = None
|
|
|
|
import sys
|
|
sys.modules['FixTk'] = None
|
|
|
|
a = Analysis(['get_profile.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[],
|
|
hiddenimports=[],
|
|
hookspath=[],
|
|
runtime_hooks=[],
|
|
excludes=['FixTk', 'tcl', 'tk', '_tkinter', 'tkinter', 'Tkinter'],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher,
|
|
noarchive=False)
|
|
pyz = PYZ(a.pure, a.zipped_data,
|
|
cipher=block_cipher)
|
|
exe = EXE(pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
[],
|
|
name='get_profile',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=True,
|
|
upx_exclude="vcruntime140.dll",
|
|
runtime_tmpdir=None,
|
|
console=True )
|