From e855f06e0ea6cd759548f368b9c7d589d116af93 Mon Sep 17 00:00:00 2001 From: byun Date: Thu, 18 Dec 2025 06:48:39 +0000 Subject: [PATCH] Add CAN_Converter.spec --- CAN_Converter.spec | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 CAN_Converter.spec diff --git a/CAN_Converter.spec b/CAN_Converter.spec new file mode 100644 index 0000000..cbc4a90 --- /dev/null +++ b/CAN_Converter.spec @@ -0,0 +1,43 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + +a = Analysis( + ['can_converter_gui.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=['cantools', 'asammdf', 'PyQt5'], + hookspath=[], + hooksconfig={}, + 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='CAN_Converter', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +)