[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "weather-mcp"
version = "0.1.0"
description = "MCP server providing weather alerts and forecasts from the National Weather Service"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
keywords = ["mcp", "weather", "nws"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"httpx>=0.28.1",
"mcp[cli]>=1.23.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.23.0",
"black>=23.0",
"ruff>=0.1.0",
]
[project.scripts]
weather-mcp = "weather.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/weather"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"