You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
717 B
TOML
28 lines
717 B
TOML
|
6 months ago
|
[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"]
|
||
|
|
|