claire/pyproject.toml
Natalie c63ef06430 feat(@projects/@clare): add orchestrator subsystem with mcp support
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-05-18 08:44:34 -07:00

50 lines
937 B
TOML

[project]
name = "clare"
version = "0.1.0"
description = "Project manager for the Claude agent fleet — sits on top of rclaude."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.7",
"typer>=0.12",
"rich>=13",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"jinja2>=3.1",
"httpx>=0.27",
"python-multipart>=0.0.9",
"anthropic>=0.102.0",
"mcp>=1.27.1",
]
[project.scripts]
clare = "clare.cli:app"
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"mypy>=1.10",
"ruff>=0.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/clare"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
strict = true
python_version = "3.12"
mypy_path = "src"
packages = ["clare"]
[tool.ruff]
line-length = 100
target-version = "py312"