pyproject.toml 784 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [project]
  2. name = "agent-lab"
  3. version = "0.1.0"
  4. description = "A FastAPI debug console for chat and event agents."
  5. readme = "README.md"
  6. requires-python = ">=3.11"
  7. dependencies = [
  8. "fastapi>=0.111.0",
  9. "httpx>=0.27.0",
  10. "pydantic-settings>=2.3.0",
  11. "uvicorn[standard]>=0.30.0",
  12. "websockets>=12.0",
  13. ]
  14. [dependency-groups]
  15. dev = [
  16. "pytest>=8.2.0",
  17. "pytest-asyncio>=0.23.0",
  18. ]
  19. [project.scripts]
  20. agent-lab = "agent_lab.main:run"
  21. [build-system]
  22. requires = ["setuptools>=68"]
  23. build-backend = "setuptools.build_meta"
  24. [tool.setuptools.packages.find]
  25. where = ["src"]
  26. [tool.setuptools.package-data]
  27. "agent_lab.presentation" = ["static/*.html", "static/*.js", "static/*.css"]
  28. [tool.pytest.ini_options]
  29. asyncio_mode = "auto"
  30. pythonpath = ["src"]
  31. testpaths = ["tests"]