Files
lzwcai-mcp/lzwcai_temi_mcp/pyproject.toml
tanjianbin 3b881bf8c8 feat(temi_mcp): 添加跳舞工具并修复卡片消息发送
为轮足机器人添加跳舞功能,包含新的 MCP 工具和服务器方法。同时修复 Lark MCP 中发送卡片消息时 person_id 处理的问题,避免在 person_id 为 None 时产生异常。更新两个包的版本号以反映变更。
2026-04-03 15:55:23 +08:00

27 lines
531 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lzwcai_temi_mcp"
version = "0.1.12"
description = "MQTT-based navigation server for robot"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.95.0",
"uvicorn>=0.21.0",
"paho-mqtt>=2.0.0",
"pydantic>=1.10.0",
"python-dotenv>=0.21.0",
"mcp[cli]>=1.6.0",
"requests>=2.25.0"
]
[project.scripts]
lzwcai_temi_mcp = "lzwcai_temi_mcp.main:main"
[tool.hatch.build.targets.wheel]
packages = ["lzwcai_temi_mcp"]