[project]
name = "loxone-mcp-server"
version = "0.3.10"
description = "MCP server for Loxone Miniserver integration"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Loxone MCP Contributors" }
]
keywords = ["mcp", "loxone", "smart-home", "home-automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"fastmcp>=0.9.0",
"websockets>=14.0",
"pycryptodome>=3.20.0",
"httpx>=0.27.0",
"uvloop>=0.21.0",
"ruff>=0.13.3",
"black>=25.9.0",
"mypy>=1.18.2",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pip>=25.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
"black>=24.0.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
"pre-commit>=3.6.0",
]
[project.scripts]
loxone-mcp-server = "loxone_mcp.simple_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/loxone_mcp"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]