-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (40 loc) · 891 Bytes
/
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
[tool.poetry]
name = "pyavcontrol"
version = "0.0.1"
description = "Python Control of RS232/IP Audio/Visual Equipment"
readme = "README.md"
license = "LICENSE"
authors = [ "Ryan Snodgrass <rsnodgrass@gmail.com>" ]
[tool.poetry.dependencies]
python = "^3.10"
pyserial = "^3.5"
pyserial-asyncio = "^0.6"
ratelimit = "^2.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.optional-dependencies]
test = [ # pip install .[test]
"coloredlogs",
"pre-commit"
]
doc = [
"sphinx",
]
[tool.isort]
profile = "black"
force_to_top = [ "logging" ]
balanced_wrapping = true
[tool.black]
line-length = 90
[tool.pycln]
all = true
[tool.refurb]
quiet = true
ignore = []
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"
[tool.pylint.CODE_STYLE]
max-line-length-suggestions = 90