| 123456789101112131415161718192021222324252627 |
- [build-system]
- requires = ["setuptools>=61.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "weather-mcp-server"
- version = "1.0.0"
- description = "Real-time weather query MCP server based on HelloAgents framework"
- readme = "README.md"
- license = {text = "MIT"}
- authors = [
- {name = "HelloAgents Team", email = "jjyaoao@126.com"}
- ]
- requires-python = ">=3.10"
- dependencies = [
- "hello-agents>=0.2.2",
- "requests>=2.31.0",
- ]
- [project.urls]
- Homepage = "https://github.com/yourusername/weather-mcp-server"
- Repository = "https://github.com/yourusername/weather-mcp-server"
- "Bug Tracker" = "https://github.com/yourusername/weather-mcp-server/issues"
- [tool.setuptools]
- py-modules = ["server"]
|