From 21d4262c1d0fa372de7cfe11621f47535fc4e154 Mon Sep 17 00:00:00 2001 From: NikkeDoy Date: Sun, 8 Dec 2024 22:47:42 +0200 Subject: [PATCH] :sparkles: | Added finnwarslauncher.spec. --- finnwarslauncher.spec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 finnwarslauncher.spec diff --git a/finnwarslauncher.spec b/finnwarslauncher.spec new file mode 100644 index 0000000..4636cc8 --- /dev/null +++ b/finnwarslauncher.spec @@ -0,0 +1,23 @@ +block_cipher = None + +a = Analysis( + ['main.py'], + pathex=['.'], + datas=[('assets', 'assets')], + hiddenimports=['PIL._tkinter_finder', 'tkinter'] +) +pyz = PYZ(a.pure) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='FinnWarsLauncher', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False )