-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.33 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
[build-system]
requires = ["setuptools>=62.3"]
build-backend = "setuptools.build_meta"
[project]
name = "pyprusalink"
version = "2.1.1"
license = {text = "Apache-2.0"}
description = "Library to interact with PrusaLink v2"
readme = "README.md"
authors = [
{name = "The Home Assistant Authors", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Home Automation",
]
dependencies = [
"httpx",
]
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["pyprusalink*"]
[tool.pylint.BASIC]
class-const-naming-style = "any"
good-names = [
"_",
"ev",
"ex",
"fp",
"i",
"id",
"j",
"k",
"Run",
"ip",
]
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
src_paths = [
"custom_components",
"matter_server/client",
"matter_server/common",
"matter_server/server",
]
known_first_party = [
"custom_components",
"matter_server",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true