[project]
name = "aqicn-mcp"
version = "0.1.0"
description = "MCP server for querying air quality data from AQICN API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=0.9.0",
"httpx>=0.27.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/aqicn_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/README.md",
"/pyproject.toml",
]
[project.scripts]
aqicn-mcp = "aqicn_mcp.server:main"