forked from zlangbert/ha-daikinone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 817 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "ha-daikinone"
version = "0.1.0"
description = "Daikin One+ integration for Home Assistant"
authors = [{ name = "Zach Langbert", email = "[email protected]" }]
dependencies = [
"homeassistant~=2024.2.0",
"pydantic~=1.10.12",
"backoff~=2.2.1",
]
readme = "README.md"
requires-python = ">= 3.12"
[tool.rye]
managed = true
dev-dependencies = [
"setuptools>=69.0.3",
"ruff>=0.2.1 ",
"pyright>=1.1.350",
"black[d]>=24.1.1",
]
[tool.rye.scripts]
start = "nodemon --signal SIGTERM -w . -e 'py,json' -x 'docker compose up'"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pyright]
venvPath = "."
venv = ".venv"
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120