| 12345678910111213141516171819202122232425262728293031323334 |
- [project]
- name = "agent-lab"
- version = "0.1.0"
- description = "A FastAPI debug console for chat and event agents."
- readme = "README.md"
- requires-python = ">=3.11"
- dependencies = [
- "fastapi>=0.111.0",
- "httpx>=0.27.0",
- "pydantic-settings>=2.3.0",
- "uvicorn[standard]>=0.30.0",
- "websockets>=12.0",
- ]
- [dependency-groups]
- dev = [
- "pytest>=8.2.0",
- "pytest-asyncio>=0.23.0",
- ]
- [project.scripts]
- agent-lab = "agent_lab.main:run"
- [build-system]
- requires = ["setuptools>=68"]
- build-backend = "setuptools.build_meta"
- [tool.setuptools.packages.find]
- where = ["src"]
- [tool.pytest.ini_options]
- asyncio_mode = "auto"
- pythonpath = ["src"]
- testpaths = ["tests"]
|