RA3_MP3_Player/Quake3Arena.spec

40 lines
744 B
RPMSpec
Raw Normal View History

2026-01-20 15:57:22 -05:00
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
2026-01-22 15:06:25 -05:00
['RA3MP3Playback.pyw'],
2026-01-20 15:57:22 -05:00
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
2026-01-22 15:06:25 -05:00
excludes=['unittest', 'http', 'pydoc', 'doctest'],
2026-01-20 15:57:22 -05:00
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='Quake3Arena',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
2026-01-22 15:06:25 -05:00
console=False,
2026-01-20 15:57:22 -05:00
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['quake3modern.ico'],
)