packaged with rye for export_mode

This commit is contained in:
John Lancaster
2024-05-02 22:27:46 -05:00
parent d42afb1829
commit 069e0c0f42
11 changed files with 316 additions and 16 deletions

32
pyproject.toml Normal file
View File

@@ -0,0 +1,32 @@
[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"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.format]
quote-style = 'single'
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/room_control"]