pyproject.toml•2.18 kB
[project]
name = "mcp-echo"
version = "1.0.0"
description = "Echo MCP Server"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.13"
authors = [
{ name = "NimbleBrain Inc", email = "hello@nimblebrain.ai" },
]
keywords = ["mcp", "echo", "testing", "nimblebrain"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"aiohttp>=3.12.15",
"fastapi>=0.117.1",
"fastmcp>=2.12.4",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"uvicorn>=0.30.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_echo"]
[tool.ruff]
target-version = "py313"
line-length = 100
[tool.ruff.lint]
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 formatter
"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"
[tool.mypy]
python_version = "3.13"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_any_unimported = false
ignore_missing_imports = true
no_implicit_reexport = true
check_untyped_defs = true
show_error_codes = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
disable_error_code = ["unused-coroutine", "misc"]
[dependency-groups]
dev = [
"mcp>=1.3.2",
"mypy>=1.18.2",
"pytest>=8.4.2",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"requests>=2.32.0",
"ruff>=0.13.1",
]
[project.urls]
Homepage = "https://github.com/NimbleBrainInc/mcp-echo"
Repository = "https://github.com/NimbleBrainInc/mcp-echo.git"
Issues = "https://github.com/NimbleBrainInc/mcp-echo/issues"