alpha v0.960

This commit is contained in:
2026-06-27 16:53:45 +03:00
parent 8db9ed7baf
commit e6afc266fc
22 changed files with 1749 additions and 147 deletions

View File

@@ -0,0 +1,53 @@
# -*- mode: python ; coding: utf-8 -*-
import os
block_cipher = None
project_root = (
os.path.abspath(os.path.dirname(__file__))
if "__file__" in globals()
else os.path.abspath(os.getcwd())
)
a = Analysis(
["client_agent_v2.py"],
pathex=[project_root],
binaries=[],
datas=[
(os.path.join(project_root, "picture", "ICON", "icon_client.png"), "picture/ICON"),
(os.path.join(project_root, "picture", "Client", "window_main.png"), "picture/Client"),
],
hiddenimports=[],
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="inventory_client_agent_v2",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=os.path.join(project_root, "picture", "ICON", "icon_client.ico"),
)