pyproject.toml 810 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "jsonschema>=4.26.0",
  11. "pydantic-settings>=2.3.0",
  12. "uvicorn[standard]>=0.30.0",
  13. "websockets>=12.0",
  14. ]
  15. [dependency-groups]
  16. dev = [
  17. "pytest>=8.2.0",
  18. "pytest-asyncio>=0.23.0",
  19. ]
  20. [project.scripts]
  21. agent-lab = "agent_lab.main:run"
  22. [build-system]
  23. requires = ["setuptools>=68"]
  24. build-backend = "setuptools.build_meta"
  25. [tool.setuptools.packages.find]
  26. where = ["src"]
  27. [tool.setuptools.package-data]
  28. "agent_lab.presentation" = ["static/*.html", "static/*.js", "static/*.css"]
  29. [tool.pytest.ini_options]
  30. asyncio_mode = "auto"
  31. pythonpath = ["src"]
  32. testpaths = ["tests"]