huecli/pyproject.toml

34 lines
531 B
TOML
Raw Permalink Normal View History

2024-11-28 20:42:45 +00:00
[project]
2024-06-04 14:08:08 +00:00
name = "huecli"
2024-11-28 20:53:16 +00:00
version = "0.1.7"
2024-06-15 09:29:22 +00:00
description = "Set Philips Hue lights using MQTT"
2024-11-28 20:42:45 +00:00
authors = [
{ name = "Torjus Håkestad", email = "torjus@usit.uio.no" },
]
2024-06-04 14:08:08 +00:00
readme = "README.md"
2024-11-28 20:42:45 +00:00
requires-python = ">=3.12"
dependencies = [
"paho-mqtt>=2.1.0",
"typer-slim>=0.13.1",
]
2024-06-04 14:08:08 +00:00
2024-11-28 20:42:45 +00:00
[project.scripts]
2024-06-04 14:08:08 +00:00
huecli = "huecli.__main__:main"
2024-11-28 20:42:45 +00:00
[tool.uv]
package = true
[dependency-groups]
dev = [
{include-group = "linting"},
{include-group = "typing"},
]
typing = [
"mypy>=1.13.0",
]
linting = [
"ruff>=0.8.0",
]