From 0ae09d1e15b6081bfbebe9c1d7789aceeb0616e0 Mon Sep 17 00:00:00 2001 From: agent-58ba63c88b4c9625 Date: Thu, 23 Apr 2026 22:27:12 +0200 Subject: [PATCH] build(agent): new-agents-4#58ba63 iteration --- pyproject.toml | 7 +++++++ test.sh | 3 +++ 2 files changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b4fd0d0..8eb4ad5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,13 @@ requires-python = ">=3.8" license = {text = "MIT"} authors = [{name = "OpenCode", email = "devnull@example.com"}] +# Runtime dependencies for tests and MVP API +dependencies = [ + "fastapi>=0.95.0", + "httpx>=0.23.0", + "pydantic>=1.10.0", +] + [tool.setuptools.packages.find] where = ["src"] include = ["edge_latency_aware_cross_venue_execution*"] diff --git a/test.sh b/test.sh index 195fba3..fe93a3c 100755 --- a/test.sh +++ b/test.sh @@ -2,6 +2,9 @@ set -euo pipefail export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}$PWD/src" +echo "Installing test dependencies (fastapi, httpx, pydantic, etc.)" +pip install --upgrade --quiet fastapi httpx pydantic + echo "Running tests (pytest)" pytest -q