-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (43 loc) · 1.01 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
[tool.black]
line-length=79
[tool.isort]
import_heading_firstparty = "Library"
import_heading_future = "Futures"
import_heading_local = "Local"
import_heading_stdlib = "Standard Library"
import_heading_thirdparty = "Third Party"
indent = 4
known_first_party = "myapp"
lines_after_imports = 2
lines_between_types = 1
profile = "black"
#Pylint section
[tool.pylint]
[tool.pylint.main]
disable = ['I1101', 'C0114', 'C0115', 'C0116', 'W1203', 'W0621']
max-attributes=20
max-locals=20
fail-under=9.5
[tool.pylint.logging]
logging-format-style = "new"
[tool.flake8]
ignore = ["F811"]
[tool.poetry]
name = "sit-gateway"
version = "0.1.0"
description = ""
authors = ["Sven Hoyer <sven.hoyer@hotmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11, <3.13"
websockets = "^12.0"
bleak = "^0.21.1"
requests = "^2.31.0"
pyjwt = "^2.8.0"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
mypy = "^1.8.0"
pylint = "^3.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"