Added spec file for pyinstaller, updated .gitignore, added patrons section to credits.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,7 @@
|
|||||||
filestructure.txt
|
filestructure.txt
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
*\.pyc
|
*\.pyc
|
||||||
sounds/rec.sh
|
sounds/rec.sh
|
||||||
*.flac
|
*.flac
|
||||||
|
@@ -18,6 +18,14 @@ https://michaels.world
|
|||||||
|
|
||||||
Tony Seth: Documentation proof reading, beta testing.
|
Tony Seth: Documentation proof reading, beta testing.
|
||||||
|
|
||||||
|
Patrons:
|
||||||
|
|
||||||
|
Chime hart:
|
||||||
|
https://hubert-humphrey.com
|
||||||
|
|
||||||
|
Ko-fi Supporters:
|
||||||
|
https://ko-fi.com/stormux/leaderboard
|
||||||
|
|
||||||
Music:
|
Music:
|
||||||
|
|
||||||
Choir of Doom:
|
Choir of Doom:
|
||||||
|
44
wicked_quest.spec
Normal file
44
wicked_quest.spec
Normal 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',
|
||||||
|
)
|
Reference in New Issue
Block a user