Files
openmeteo-weather-mcp/pyproject.toml
2025-05-04 23:39:25 +03:00

27 lines
573 B
TOML

[project]
name = "openmeteo-weather-mcp"
version = "0.1.0"
requires-python = ">=3.13"
description = "Weather forecast tool for MCP"
authors = ["Walid Ismail"]
dependencies = [
"fastmcp",
"python-dotenv",
"aiohttp",
"uvicorn",
"geopy",
"pandas",
"requests_cache",
"retry_requests",
"openmeteo_requests"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
openmeteo-weather-mcp = "openmeteo_weather.openmeteo_weather:mcp.run"
[tool.hatch.build.targets.wheel]
packages = ["openmeteo_weather.py"]