[project]
name = "weather-mcp-server"
version = "1.0.0"
description = "Model Context Protocol server for weather data using OpenWeatherMap API"
authors = [
{name = "Weather MCP Team"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.12.2",
"uvicorn[standard]>=0.24.0",
"gunicorn>=21.2.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0"
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[build-system.setuptools]
py-modules = ["my_server"]
[tool.black]
line-length = 100
target-version = ["py310", "py311"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true