| 123456789101112131415161718192021222324 |
- [project]
- name = "content-find-agent-new"
- version = "0.1.0"
- description = "Content Agent V1 backend skeleton with FastAPI, LangGraph, and mock runtime files."
- requires-python = ">=3.11"
- dependencies = [
- "fastapi>=0.115.0",
- "httpx>=0.27.0",
- "imageio-ffmpeg>=0.4.9",
- "langgraph>=1.0.0",
- "pydantic>=2.8.0",
- "pymysql>=1.1.1",
- "pytest>=8.2.0",
- "uvicorn>=0.30.0",
- ]
- [project.optional-dependencies]
- # Excel<->JSON config tooling (V2-M1); not required by the runtime.
- excel = ["openpyxl>=3.1"]
- [tool.pytest.ini_options]
- testpaths = ["tests"]
- pythonpath = ["."]
|