feat: initial commit

This commit is contained in:
cătălin 2024-10-22 22:57:43 +02:00
commit beab2ff3a5
No known key found for this signature in database
24 changed files with 3506 additions and 0 deletions

46
markovbot.spec Normal file
View file

@ -0,0 +1,46 @@
# -*- mode: python ; coding: utf-8 -*-
from kivy.deps import sdl2, glew
a = Analysis(
['src/markovbot_gui/main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='markovbot',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
*[Tree(p) for p in (sdl2.dep_bins + glew.dep_bins)],
strip=False,
upx=True,
upx_exclude=[],
name='markovbot',
)