diff --git a/agent_v0/deploy_windows.py b/agent_v0/deploy_windows.py index 23d1bdb17..050bf9321 100644 --- a/agent_v0/deploy_windows.py +++ b/agent_v0/deploy_windows.py @@ -41,8 +41,6 @@ FILE_MANIFEST: list[tuple[str, str]] = [ ("agent_v1/core/__init__.py", "agent_v1/core/__init__.py"), ("agent_v1/core/captor.py", "agent_v1/core/captor.py"), ("agent_v1/core/executor.py", "agent_v1/core/executor.py"), - ("agent_v1/core/window_info.py", "agent_v1/core/window_info.py"), - ("agent_v1/core/window_info_crossplatform.py", "agent_v1/core/window_info_crossplatform.py"), # agent_v1/network ("agent_v1/network/__init__.py", "agent_v1/network/__init__.py"), diff --git a/deploy/build_package.sh b/deploy/build_package.sh index 46e5877e4..ef0bf2d0d 100755 --- a/deploy/build_package.sh +++ b/deploy/build_package.sh @@ -93,6 +93,10 @@ rsync -a \ --exclude='sessions/' \ --exclude='logs/*.log' \ --exclude='.hypothesis' \ + --exclude='*.md' \ + --exclude='ui/chat_window.py' \ + --exclude='ui/shared_state.py' \ + --exclude='ui/capture_server.py' \ "$PROJECT_ROOT/agent_v0/agent_v1/" \ "$PACKAGE_DIR/agent_v1/" @@ -108,8 +112,9 @@ echo "" # --------------------------------------------------------------- echo "[5/7] Copie du module lea_ui..." mkdir -p "$PACKAGE_DIR/lea_ui" -cp "$PROJECT_ROOT/agent_v0/lea_ui/"*.py "$PACKAGE_DIR/lea_ui/" -echo " lea_ui/ copie ($(ls "$PACKAGE_DIR/lea_ui/"*.py | wc -l) fichiers)" +cp "$PROJECT_ROOT/agent_v0/lea_ui/__init__.py" "$PACKAGE_DIR/lea_ui/" +cp "$PROJECT_ROOT/agent_v0/lea_ui/server_client.py" "$PACKAGE_DIR/lea_ui/" +echo " lea_ui/ copie (2 fichiers)" echo "" # ---------------------------------------------------------------