Remove legacy temi_mcpserver files and migrate to terminal_temi_mcp structure, including new MQTT handling and navigation server implementation. Updated project configuration and added necessary scripts for deployment.

This commit is contained in:
2025-09-26 12:12:19 +08:00
parent fa6a044d75
commit 21d7186596
8 changed files with 21 additions and 248 deletions

View File

@@ -0,0 +1,26 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "terminal_temi_mcp"
version = "0.1.15"
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_temi_mcp = "terminal_temi_mcp.main:main"
[tool.hatch.build.targets.wheel]
packages = ["terminal_temi_mcp"]