-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPokeTrack.spec
More file actions
59 lines (54 loc) · 1.86 KB
/
Copy pathPokeTrack.spec
File metadata and controls
59 lines (54 loc) · 1.86 KB
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
54
55
56
57
58
59
# -*- mode: python ; coding: utf-8 -*-
"""PyInstaller build spec for the PokéTrack desktop app (one-file, windowed).
pyinstaller --noconfirm PokeTrack.spec -> dist/PokeTrack.exe
Bundled read-only assets (languages.json, data/regions_map.json, CustomTkinter
theme files) are unpacked to a temp dir at runtime; the app reads them via
``RESOURCE_ROOT`` while writable files (config.json, the SQLite DB, the image
cache) live next to the executable via ``ROOT`` — see poketrack/app_context.py.
"""
from PyInstaller.utils.hooks import collect_data_files
datas = [
("languages.json", "."),
("data/regions_map.json", "data"),
("assets/icon.png", "assets"), # bundled so the desktop window/taskbar icon is set at runtime
("assets/icon.ico", "assets"),
("assets/github_profile.png", "assets"), # footer link icons
("assets/discord.png", "assets"),
]
datas += collect_data_files("customtkinter")
a = Analysis(
["main.py"],
pathex=[],
binaries=[],
datas=datas,
# poketrack_native is imported inside a try/except (optional Rust fast path);
# list it explicitly so PyInstaller bundles it when it's installed at build time.
hiddenimports=["PIL._tkinter_finder", "poketrack_native"],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name="PokeTrack",
icon="assets/icon.ico", # PokéTracker radar icon — embedded in the .exe (taskbar/Explorer)
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False, # windowed (no console) — it's a GUI app
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)