feat: chat sidebar and inbox, feat: saved chats, fix: wake jobs, fix: sandbox sends, ux: negotiation replies and draft box
This commit is contained in:
+9
-1
@@ -1,14 +1,22 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
from PyInstaller.utils.hooks import collect_all
|
||||
import sysconfig
|
||||
from pathlib import Path
|
||||
|
||||
webview_datas, webview_binaries, webview_hiddenimports = collect_all("webview")
|
||||
|
||||
python_binaries = []
|
||||
for dll_name in ("python3.dll", f"python{sysconfig.get_python_version().replace('.', '')}.dll"):
|
||||
dll_path = Path(sysconfig.get_config_var("BINDIR") or "") / dll_name
|
||||
if dll_path.exists():
|
||||
python_binaries.append((str(dll_path), "."))
|
||||
|
||||
|
||||
a = Analysis(
|
||||
["traderai\\desktop.py"],
|
||||
pathex=[],
|
||||
binaries=webview_binaries,
|
||||
binaries=[*webview_binaries, *python_binaries],
|
||||
datas=[("web", "web"), *webview_datas],
|
||||
hiddenimports=[
|
||||
*webview_hiddenimports,
|
||||
|
||||
Reference in New Issue
Block a user