[project]
name = "bach-weather_by_api_ninjas"
version = "1.0.0"
description = "MCP server for accessing Weather By Api Ninjas API"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "bachstudio"}
]
keywords = ["mcp", "weather_by_api_ninjas", "api", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"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 = [
"fastmcp>=2.0.0",
"httpx>=0.25.0",
]
[project.scripts]
bach_weather_by_api_ninjas = "server:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
]
[project.urls]
Homepage = "https://github.com/bachstudio/bach-weather_by_api_ninjas"
Repository = "https://github.com/bachstudio/bach-weather_by_api_ninjas"
Documentation = "https://github.com/bachstudio/bach-weather_by_api_ninjas#readme"
"Bug Tracker" = "https://github.com/bachstudio/bach-weather_by_api_ninjas/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
artifacts = ["openapi.json"]
[tool.hatch.build.targets.sdist]
include = [
"server.py",
"openapi.json",
"README.md",
"LICENSE",
"__init__.py",
]
[tool.hatch.version]
path = "server.py"
pattern = '__version__ = "(?P<version>[^"]+)"'