pyproject.toml 592 B

12345678910111213141516171819202122232425
  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. "pg8000>=1.31.0",
  12. "pydantic>=2.8.0",
  13. "pymysql>=1.1.1",
  14. "pytest>=8.2.0",
  15. "uvicorn>=0.30.0",
  16. ]
  17. [project.optional-dependencies]
  18. # Excel<->JSON config tooling (V2-M1); not required by the runtime.
  19. excel = ["openpyxl>=3.1"]
  20. [tool.pytest.ini_options]
  21. testpaths = ["tests"]
  22. pythonpath = ["."]