colortunnel/pyproject.toml
2024-06-19 19:25:17 -04:00

21 lines
423 B
TOML

[build-system]
requires = ["setuptools>=65.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bulbctl"
version = "0.0.1"
authors = [
{name="D. Scott Boggs", email="scott@tams.tech"}
]
description = "Control Phillips Hue light bulbs"
requires-python = ">=3.11" # this can probably be lowered, we'll see
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"bleak",
"rgbxy"
]