forked from home-assistant/wheels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (40 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
51 lines (40 loc) · 1.19 KB
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
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "builder"
version = "2.1.0"
license = {text = "Apache-2.0"}
description = "Home Assistant Python wheels builder."
authors = [
{name = "The Home Assistant Authors", email = "hello@home-assistant.io"}
]
keywords = ["docker", "home-assistant"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: Home Automation",
"Development Status :: 5 - Production/Stable",
]
[project.urls]
"Homepage" = "https://home-assistant.io/"
[tool.setuptools.packages.find]
include = ["builder*"]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"FBT001", # Boolean-typed positional argument in function definition
"T201", # print found
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package
"S101", # Use of assert detected
"SLF001", # Private member accessed
]
[tool.ruff.lint.pylint]
max-args = 6