marchwarden/pyproject.toml
Jeff Smith 87a34c60d1 M2.1: marchwarden ask CLI command (#8)
Click app with `ask` subcommand that spawns the web researcher MCP
server over stdio, calls the research tool, and pretty-prints the
ResearchResult contract using rich (panels for answer/confidence/cost,
tables for citations, gaps, discovery events, and open questions).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 14:51:40 -06:00

63 lines
1.3 KiB
TOML

[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "marchwarden"
version = "0.1.0-dev"
description = "Agentic research network: specialists at the frontier, PI orchestrator at the center"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "archeious"}
]
dependencies = [
"anthropic>=0.30.0",
"mcp>=0.1.0",
"pydantic>=2.0",
"tavily-python>=0.3.0",
"httpx>=0.24.0",
"click>=8.0",
"rich>=13.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1.0",
"mypy>=1.0",
]
[project.scripts]
marchwarden = "cli.main:cli"
[tool.setuptools.packages.find]
include = ["researchers*", "orchestrator*", "cli*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["researchers", "orchestrator", "cli"]
omit = ["*/tests/*", "*/test_*.py"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
line-length = 88
target-version = "py310"
select = ["E", "F", "W", "I001"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false