pyproject.toml•813 B
[project]
name = "agentexecmpc"
version = "0.1.0"
description = "A FastMCP server providing core execution capabilities for AI agents"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiofiles>=24.1.0",
"fastapi>=0.111.0",
"fastmcp>=2.5.1",
"uvicorn[standard]>=0.29.0",
]
[tool.ruff]
target-version = "py312"
line-length = 88
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"