pyproject.toml•785 B
[project]
name = "hue-mcp-server"
version = "0.1.0"
description = "MCP server for controlling Philips Hue lights"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mcp[cli]>=1.15.0",
"phue>=1.1",
"python-dotenv>=1.1.1",
]
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
keywords = ["mcp", "philips-hue", "smart-home", "iot"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
hue-mcp-server = "main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]