f46f725d12
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
50 lines
1021 B
RPMSpec
50 lines
1021 B
RPMSpec
# PyInstaller spec for hbc_windows.exe
|
|
# Build with: pyinstaller hbc_windows.spec
|
|
#
|
|
# Requirements (on Windows):
|
|
# pip install pyinstaller
|
|
|
|
block_cipher = None
|
|
|
|
a = Analysis(
|
|
['hbc_windows.py'],
|
|
pathex=[],
|
|
binaries=[],
|
|
datas=[],
|
|
hiddenimports=[],
|
|
hookspath=[],
|
|
hooksconfig={},
|
|
runtime_hooks=[],
|
|
excludes=['tkinter', 'unittest', 'email', 'html', 'http', 'urllib', 'xml'],
|
|
win_no_prefer_redirects=False,
|
|
win_private_assemblies=False,
|
|
cipher=block_cipher,
|
|
noarchive=False,
|
|
)
|
|
|
|
pyz = PYZ(a.pure, a.zlib_archive, cipher=block_cipher)
|
|
|
|
exe = EXE(
|
|
pyz,
|
|
a.scripts,
|
|
a.binaries,
|
|
a.zipfiles,
|
|
a.datas,
|
|
[],
|
|
name='hbc_windows',
|
|
debug=False,
|
|
bootloader_ignore_signals=False,
|
|
strip=False,
|
|
upx=False,
|
|
upx_exclude=[],
|
|
runtime_tmpdir=None,
|
|
console=True,
|
|
disable_windowed_traceback=False,
|
|
argv_emulation=False,
|
|
target_arch=None,
|
|
codesign_identity=None,
|
|
entitlements_file=None,
|
|
icon=None,
|
|
version=None,
|
|
)
|