pyproject.toml•1.19 kB
[project]
name = "mcp-gs-robot"
version = "0.1.12"
description = "MCP Server for Gausium Robot OpenAPI - Control and monitor Gausium cleaning robots through AI assistants"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "toy", email = "cfrs2005@gmail.com" }
]
license = { text = "MIT" }
keywords = ["mcp", "gausium", "robot", "openapi"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"httpx>=0.28.1",
"mcp[cli]>=1.6.0",
"python-dotenv>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/cfrs2005/mcp-gs-robot"
Repository = "https://github.com/cfrs2005/mcp-gs-robot"
Issues = "https://github.com/cfrs2005/mcp-gs-robot/issues"
[project.scripts]
mcp-gs-robot = "gs_openapi.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/pyproject.toml"
]
[tool.hatch.build.targets.wheel]
packages = ["src/gs_openapi"]