Files
lzwcai-mcp/terminal_go2_mcp/pyproject.toml
Sucan126 ff39bdbd8a feat: 添加机器人模式切换和连续移动功能
- 新增switch_mode方法用于切换机器人运控模式
- 添加ContinuousMove方法实现机器人连续移动控制
- 更新工具调用处理以支持新功能
- 调整版本号至0.0.9
2025-10-09 19:33:14 +08:00

25 lines
532 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "terminal_go2_mcp"
version = "0.0.9"
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]
terminal_go2_mcp = "terminal_go2_mcp.main:main"
[tool.hatch.build.targets.wheel]
packages = ["terminal_go2_mcp"]