Multi-agent discussion framework: - Custom/AutoGen/CrewAI backends - Multi-provider API (role→model binding) - Tools system (files, web, commands) - Markdown scenarios with YAML frontmatter - Workspace init (meeting-room init) - Session save (--save)
30 lines
755 B
TOML
30 lines
755 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",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
autogen = ["autogen-agentchat", "autogen-ext"]
|
|
crewai = ["crewai"]
|
|
all = ["autogen-agentchat", "autogen-ext", "crewai"]
|
|
|
|
[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"]
|