From 9fa152306b77808b03fbc5472c5306cae3702459 Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Fri, 30 Aug 2024 12:27:13 +0200 Subject: [PATCH] add build.spec --- build.spec | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 build.spec diff --git a/build.spec b/build.spec new file mode 100644 index 0000000..38f2e70 --- /dev/null +++ b/build.spec @@ -0,0 +1,38 @@ +# -*- mode: python ; coding: utf-8 -*- + + +a = Analysis( + ['main.py'], + pathex=[], + binaries=[], + datas=[('services', 'services')], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name='ai-suite-rocm_linux_x86_64', + 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, +)