pyproject.tomlโข823 B
[project]
name = "mcp-server-poc"
version = "0.1.0"
description = "Proof of Concept MCP Server with cutting-edge Python technologies"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
"aiofiles>=23.2.0",
"uvloop>=0.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.11.0",
"ruff>=0.1.6",
"mypy>=1.7.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true