1
0

pyproject.toml 717 B

123456789101112131415161718192021222324252627
  1. [build-system]
  2. requires = ["setuptools>=61.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "weather-mcp-server"
  6. version = "1.0.0"
  7. description = "Real-time weather query MCP server based on HelloAgents framework"
  8. readme = "README.md"
  9. license = {text = "MIT"}
  10. authors = [
  11. {name = "HelloAgents Team", email = "jjyaoao@126.com"}
  12. ]
  13. requires-python = ">=3.10"
  14. dependencies = [
  15. "hello-agents>=0.2.2",
  16. "requests>=2.31.0",
  17. ]
  18. [project.urls]
  19. Homepage = "https://github.com/yourusername/weather-mcp-server"
  20. Repository = "https://github.com/yourusername/weather-mcp-server"
  21. "Bug Tracker" = "https://github.com/yourusername/weather-mcp-server/issues"
  22. [tool.setuptools]
  23. py-modules = ["server"]