- Remove autogen and crewai backends (focus on custom only) - Simplify CLI: remove --backend flag - Remove optional deps from pyproject.toml - Add .tasks/ with 7 tasks for Phase 1 refactor - Add .wiki/concepts/meeting-room-v2.md with architecture plan - Update .wiki/index.md and .tasks/STATUS.md Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
26 lines
603 B
TOML
26 lines
603 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.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"]
|