29 lines
587 B
TOML
29 lines
587 B
TOML
[project]
|
|
name = "room-control"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
authors = [
|
|
{ name = "John Lancaster", email = "32917998+jsl12@users.noreply.github.com" }
|
|
]
|
|
dependencies = [
|
|
"appdaemon>=4.4.2",
|
|
"rich>=13.7.1",
|
|
"pydantic>=2.7.1",
|
|
"ruff>=0.4.2",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.10,<3.13"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/room_control"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = 'single'
|