-
Notifications
You must be signed in to change notification settings - Fork 2
/
Bane-Of-Wargs.spec
53 lines (49 loc) · 1.72 KB
/
Bane-Of-Wargs.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_submodules
hiddenimports = ['appdirs', 'fsspec', 'git', 'gitpython']
hiddenimports += collect_submodules('fsspec')
hiddenimports += collect_submodules('appdirs')
hiddenimports += collect_submodules('git')
hiddenimports += collect_submodules('gitpython')
a = Analysis(
['source/main.py', 'source/battle.py', 'source/check_yaml.py', 'source/colors.py', 'source/train.py', 'source/logger_sys.py', 'source/terminal_handling.py', 'source/mission_handling.py', 'source/dialog_handling.py', 'source/enemy_handling.py', 'source/data_handling.py', 'source/npc_handling.py', 'source/text_handling.py', 'source/zone_handling.py', 'source/uuid_handling.py', 'source/weapon_upgrade_handling.py', 'source/script_handling.py', 'source/consumable_handling.py', 'source/item_handling.py', 'source/dungeon.py', 'source/yaml_handling.py', 'source/player_handling.py', 'source/event_handling.py', 'source/time_handling.py'],
pathex=[],
binaries=[],
datas=[('yamale/VERSION', 'yamale')],
hiddenimports=hiddenimports,
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['fcntl'],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='Bane-Of-Wargs',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
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='Bane-Of-Wargs-Other',
)