[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dli-mcp-server"
version = "0.0.1"
authors = [
{ name="Howard M. Harte", email="hharte@magicandroidapps.com" },
]
description = "An MCP server to control Digital Loggers (DLI) Web Power Switches."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
]
dependencies = [
"fastmcp",
"power-switch-pro",
]
[project.urls]
Homepage = "https://github.com/hharte/dli-mcp-server"
[project.scripts]
dli-mcp-server = "server:main"
[tool.hatch.build]
include = ["server.py"]