pyproject.toml•719 B
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp_weather_server"
version = "0.6.0"
authors = [
{ name = "danielshih", email = "dog830228@gmail.com" },
]
description = "An MCP server for weather information"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.12.0",
"httpx>=0.23.1",
"python-dotenv>=1.1.1",
"python-dateutil>=2.8.2",
"starlette>=0.27.0",
"uvicorn>=0.20.0",
"tzdata>=2025.2",
]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_weather_server"]
[project.scripts]
mcp_weather_server = "mcp_weather_server:main"
[project.urls]
Source = "https://github.com/isdaniel/mcp_weather_server"