pyproject.toml•1.49 kB
[project]
name = "hefeng-qweather-mcp"
version = "0.4.0"
description = "和风天气 MCP 服务 - 基于 Model Context Protocol 的天气数据查询服务"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "fengyucn", email = "your-email@example.com" }
]
keywords = ["weather", "mcp", "hefeng", "qweather", "climate"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.11"
dependencies = [
"cryptography>=41.0.0",
"httpx>=0.25.0",
"mcp[cli]>=1.10.0",
"pyjwt>=2.8.0",
"python-dotenv>=1.0.0",
"typer>=0.12.0",
]
[project.urls]
Homepage = "https://github.com/fengyucn/hefeng-qweather-mcp"
Repository = "https://github.com/fengyucn/hefeng-qweather-mcp.git"
Issues = "https://github.com/fengyucn/hefeng-qweather-mcp/issues"
Documentation = "https://github.com/fengyucn/hefeng-qweather-mcp#readme"
[project.scripts]
hefeng-qweather-mcp = "hefeng_qweather_mcp.main:main"
[tool.setuptools]
package-dir = { "" = "src" }
[dependency-groups]
dev = [
"build>=1.3.0",
"mypy>=1.17.0",
"ruff>=0.12.4",
"twine>=6.2.0",
]