-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 800 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 800 Bytes
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 = "nerdaxe-ha"
version = "0.3.0"
description = "Home Assistant HACS integration for NerdAxe / NerdQAxe / ESP-Miner compatible Bitcoin miners"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "ottenchris" }]
dependencies = []
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["custom_components*"]
namespaces = true
[project.optional-dependencies]
test = [
"homeassistant>=2025.1.0",
"pre-commit>=4.0",
"pytest>=8.0",
"ruff==0.15.20",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM"]
ignore = [
"E501"
]