Initial commit: Meeting Room v0.1.0
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)
This commit is contained in:
29
pyproject.toml
Normal file
29
pyproject.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user