Added spec file for pyinstaller, updated .gitignore, added patrons section to credits.

This commit is contained in:
Storm Dragon
2025-02-19 12:45:05 -05:00
parent bc1646f83e
commit 051ec84488
3 changed files with 54 additions and 0 deletions

2
.gitignore vendored
View File

@@ -1,5 +1,7 @@
filestructure.txt
__pycache__/
build/
dist/
*\.pyc
sounds/rec.sh
*.flac

View File

@@ -18,6 +18,14 @@ https://michaels.world
Tony Seth: Documentation proof reading, beta testing.
Patrons:
Chime hart:
https://hubert-humphrey.com
Ko-fi Supporters:
https://ko-fi.com/stormux/leaderboard
Music:
Choir of Doom:

44
wicked_quest.spec Normal file
View File

@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['wicked_quest.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='wicked_quest',
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,
strip=False,
upx=True,
upx_exclude=[],
name='wicked_quest',
)