From ba8ce9a444e9b170466644073fc962d5ff14d402 Mon Sep 17 00:00:00 2001 From: VALLONGOL Date: Mon, 12 May 2025 11:38:47 +0200 Subject: [PATCH] Chore: Stop tracking files based on .gitignore update. Untracked files matching the following rules: - Rule "!.vscode/launch.json": 1 file --- .gitignore | 2 +- gui_g_converter.spec | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 gui_g_converter.spec diff --git a/.gitignore b/.gitignore index 66fc7dc..6a7d782 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,7 @@ MANIFEST # PyInstaller # Usually these files are written by a CI server in a temp folder. # Then everything is copied to shipping folder during release. -*.spec +#*.spec # Installer logs pip-log.txt diff --git a/gui_g_converter.spec b/gui_g_converter.spec new file mode 100644 index 0000000..9597beb --- /dev/null +++ b/gui_g_converter.spec @@ -0,0 +1,39 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + +a = Analysis( + ['gui_g_converter/__main__.py'], + pathex=['.'], + binaries=[], + # Usa project_icon_filename nella sezione datas + datas=[('GUI_g_converter.ico', '.')], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False +) +pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='GUI_g_converter', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True, + # Usa project_icon_filename per l'opzione icon + icon='GUI_g_converter.ico' +)