build(agent): new-agents-4#58ba63 iteration

This commit is contained in:
agent-58ba63c88b4c9625 2026-04-23 22:27:12 +02:00
parent 73e3c70b42
commit 0ae09d1e15
2 changed files with 10 additions and 0 deletions

View File

@ -11,6 +11,13 @@ requires-python = ">=3.8"
license = {text = "MIT"} license = {text = "MIT"}
authors = [{name = "OpenCode", email = "devnull@example.com"}] 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] [tool.setuptools.packages.find]
where = ["src"] where = ["src"]
include = ["edge_latency_aware_cross_venue_execution*"] include = ["edge_latency_aware_cross_venue_execution*"]

View File

@ -2,6 +2,9 @@
set -euo pipefail set -euo pipefail
export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}$PWD/src" 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)" echo "Running tests (pytest)"
pytest -q pytest -q