From 051ec844881daccf9ca3d1cabe1d7c8788444541 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 19 Feb 2025 12:45:05 -0500 Subject: [PATCH] Added spec file for pyinstaller, updated .gitignore, added patrons section to credits. --- .gitignore | 2 ++ files/credits.txt | 8 ++++++++ wicked_quest.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 wicked_quest.spec 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', +)