pyproject.toml•1.56 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "weather-mcp"
version = "1.0.0"
description = "天气查询MCP服务器 - 基于百度地图API提供天气查询功能"
authors = [
{name = "Weather MCP Developer", email = "developer@example.com"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/jiushan-test/weathermcp"
Repository = "https://github.com/jiushan-test/weathermcp"
Issues = "https://github.com/jiushan-test/weathermcp/issues"
[project.scripts]
weather-mcp = "weather_mcp.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["weather_mcp*"]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true