AsyncEventBridge bridges sync EventEmitter to asyncio consumers. FastAPI app with session management, discussion control, roles/providers. WebSocket for real-time events + inject, SSE for read-only streaming. Minimal dark-theme HTML/JS UI. `meeting-room serve` CLI subcommand. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
31 lines
785 B
TOML
31 lines
785 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", "pytest-asyncio>=0.23"]
|
|
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"]
|