mirror of
https://gitee.com/houhuan/TrendRadar.git
synced 2025-12-21 08:17:17 +08:00
26 lines
539 B
TOML
26 lines
539 B
TOML
[project]
|
|
name = "trendradar-mcp"
|
|
version = "1.1.0"
|
|
description = "TrendRadar MCP Server - 新闻热点聚合工具"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"requests>=2.32.5,<3.0.0",
|
|
"pytz>=2025.2,<2026.0",
|
|
"PyYAML>=6.0.3,<7.0.0",
|
|
"fastmcp>=2.12.0,<2.14.0",
|
|
"websockets>=13.0,<14.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
trendradar = "mcp_server.server:run_server"
|
|
|
|
[dependency-groups]
|
|
dev = []
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["mcp_server"]
|