-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
75 lines (70 loc) · 1.71 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Shawn Wilsher", email = "[email protected]" },
]
dependencies = [
"aiobrultech-serial ==0.9.0",
"aiomqtt ==1.2.1",
"jinja2 >= 3.0, < 4",
"pyserial == 3.5",
"pyyaml >= 6.0, <= 7",
"voluptuous ==0.15.2",
]
dynamic = [
"version",
]
license = {file = "LICENSE"}
name = "brultech-serial2mqtt"
readme = "README.md"
requires-python = ">=3.13,<4"
[tool.pytest.ini_options]
asyncio_mode = "auto"
# Change this to `true` to debug tests!
log_cli = false
log_cli_level = "DEBUG"
[tool.isort]
profile = "black"
src_paths = ["brultech_serial2mqtt", "tests"]
[tool.pyright]
include = [
"brultech_serial2mqtt",
"tests",
]
exclude = [
"**/__pycache__",
"typings",
]
reportConstantRedefinition = "error"
reportFunctionMemberAccess = "error"
reportIncompatibleMethodOverride = "error"
reportIncompatibleVariableOverride = "error"
reportInvalidTypeVarUse = "error"
reportMissingImports = "error"
reportMissingModuleSource = "error"
reportMissingParameterType = "error"
reportMissingTypeStubs = "error"
reportMissingTypeArgument = "error"
reportOverlappingOverload = "error"
reportPrivateUsage = "error"
reportUnknownMemberType = "none"
reportUnknownParameterType = "error"
reportUnknownVariableType = "error"
reportUntypedBaseClass = "error"
reportUntypedClassDecorator = "error"
reportUntypedFunctionDecorator = "error"
reportUntypedNamedTuple = "error"
reportUnusedClass = "error"
reportUnusedFunction = "error"
reportUnusedImport = "error"
reportUnusedVariable = "error"
typeCheckingMode = "strict"
[tool.setuptools.packages.find]
where = [
".",
]
include = [
"brultech_serial2mqtt",
]