- 将send_card_message工具从接收ID列表改为单个接收者ID - 修复test.py中导入并调用send_card_message的测试逻辑 - 新增机器人充电、终止任务、通知播放功能 - 扩展迎宾和巡逻功能参数,提供默认值和更灵活的配置 - 更新项目版本号至0.1.13和0.1.9
27 lines
530 B
TOML
27 lines
530 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai_temi_mcp"
|
|
version = "0.1.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]
|
|
lzwcai_temi_mcp = "lzwcai_temi_mcp.main:main"
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_temi_mcp"]
|
|
|