28 lines
563 B
TOML
28 lines
563 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.8,<3.12"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
# [tool.setuptools.package-data]
|
|
# mypkg = ["*.yaml"]
|
|
|
|
[tool.setuptools.data-files]
|
|
config = ["config/default_config.yaml"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = 'single'
|