pyproject.toml 572 B

123456789101112131415161718192021222324
  1. [project]
  2. name = "content-find-agent-new"
  3. version = "0.1.0"
  4. description = "Content Agent V1 backend skeleton with FastAPI, LangGraph, and mock runtime files."
  5. requires-python = ">=3.11"
  6. dependencies = [
  7. "fastapi>=0.115.0",
  8. "httpx>=0.27.0",
  9. "imageio-ffmpeg>=0.4.9",
  10. "langgraph>=1.0.0",
  11. "pydantic>=2.8.0",
  12. "pymysql>=1.1.1",
  13. "pytest>=8.2.0",
  14. "uvicorn>=0.30.0",
  15. ]
  16. [project.optional-dependencies]
  17. # Excel<->JSON config tooling (V2-M1); not required by the runtime.
  18. excel = ["openpyxl>=3.1"]
  19. [tool.pytest.ini_options]
  20. testpaths = ["tests"]
  21. pythonpath = ["."]