generated from ludeeus/integration_blueprint
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (29 loc) · 897 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
[tool.poetry]
name = "hass-emerald-ems"
version = "0.1.0"
description = "Home Assistant custom integration to fetch data from Emerald EMS"
authors = ["Brett Errington <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "custom_components/emerald_ems" }]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
homeassistant = "^2024.1.5"
colorlog = "^6.8.2"
ruff = "^0.2.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest-homeassistant-custom-component = "^0.13.91"
python-dotenv = "^1.0.1"
[tool.pytest.ini_options]
testpaths = "tests"
python_files = ["test_*.py", "when_*.py"]
python_functions = ["test_*", "it_*"]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"