diff --git a/.gitignore b/.gitignore index 5025efb..7142328 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ filestructure.txt __pycache__/ +build/ +dist/ *\.pyc sounds/rec.sh *.flac diff --git a/files/credits.txt b/files/credits.txt index 7914791..fd4b057 100644 --- a/files/credits.txt +++ b/files/credits.txt @@ -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: diff --git a/wicked_quest.spec b/wicked_quest.spec new file mode 100644 index 0000000..1a49587 --- /dev/null +++ b/wicked_quest.spec @@ -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', +)