pyproject.toml•1.91 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "g1-uart-mcp"
version = "0.1.0"
description = "MCP server for G1 device operations using Nordic BLE UART protocol"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Daniel Robert Lewis", email = "daniel.robert.lewis@gmail.com"}
]
maintainers = [
{name = "Daniel Robert Lewis", email = "daniel.robert.lewis@gmail.com"}
]
keywords = ["mcp", "ble", "bluetooth", "uart", "g1", "nordic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware",
]
requires-python = ">=3.10"
dependencies = [
"mcp>=0.1.0",
"bleak>=0.21.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/danroblewis/g1_uart_mcp"
Documentation = "https://github.com/danroblewis/g1_uart_mcp#readme"
Repository = "https://github.com/danroblewis/g1_uart_mcp.git"
Issues = "https://github.com/danroblewis/g1_uart_mcp/issues"
Changelog = "https://github.com/danroblewis/g1_uart_mcp/blob/main/CHANGELOG.md"
[project.scripts]
g1-device-mcp = "mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["."]
[tool.hatch.build.targets.sdist]
include = [
"/mcp_server.py",
"/g1_uart_manager.py",
"/README.md",
"/LICENSE",
]