pyproject.toml•568 B
[project]
name = "analysis-mcp"
version = "0.1.0"
description = "A FastMCP server for critical thinking and multi-perspective analysis"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.1.0",
]
[project.scripts]
analysis-mcp = "analysis_mcp.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.6.0",
]
[tool.ruff]
line-length = 180
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]