Files
meeting-room/pyproject.toml
vitya 1064276e81 feat: add pydantic, pytest, and optional web dependencies
Add pydantic>=2.0 to main dependencies for typed models.
Add [dev] optional deps (pytest, pytest-mock) for testing.
Add [web] optional deps (fastapi, uvicorn, websockets) for Phase 2.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-03 23:52:55 +03:00

31 lines
761 B
TOML

[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "meeting-room"
version = "0.1.0"
description = "Multi-agent discussion framework — role-based AI agents debate problems and produce solutions"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-mock>=3.0"]
web = ["fastapi>=0.100", "uvicorn>=0.20", "websockets>=11.0"]
[project.scripts]
meeting-room = "meeting_room.cli:main"
[tool.setuptools.packages.find]
include = ["meeting_room*"]
[tool.setuptools.package-data]
meeting_room = ["config/*.yaml", "scenarios/*.md", "scenarios/*.yaml"]