stacosys/stacosys.spec
Yax 6d53fdecac
Feature rye (#17)
Migrate from Poetry to Rye 
Adaptat github actions 
Group build targets in makefile
2023-11-11 19:45:35 +01:00

37 lines
741 B
Python

# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['src/stacosys/run.py'],
pathex=['src'],
binaries=[],
datas=[('src/stacosys/interface/templates/*.html', 'src/stacosys/interface/templates/')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='stacosys',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)