-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.17 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
[tool.poetry]
name = "container"
version = "0.1.0"
description = ""
authors = []
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.11"
[tool.poetry.group.assistance.dependencies]
assistance = { path = "workspaces/assistance", extras = [
"dev",
], develop = true }
[tool.poetry.group.humancompatible.dependencies]
humancompatible = { path = "workspaces/humancompatible", develop = true }
[tool.poetry.group.magicmatching.dependencies]
magicmatching = { path = "workspaces/magicmatching", develop = true }
[build-system]
requires = ["poetry-core==1.1.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
color_output = true
known_first_party = ["assistance"]
[tool.pyright]
ignore = ["**/node_modules", "**/__pycache__"]
typeCheckingMode = "basic"
[tool.pylint.messages-control]
disable = [
"fixme",
"line-too-long",
"missing-function-docstring",
"no-name-in-module",
"missing-class-docstring",
"too-few-public-methods",
"invalid-name",
"missing-module-docstring",
"no-member",
"logging-fstring-interpolation",
"unspecified-encoding",
"bare-except",
]
[tool.pylint.design]
max-locals = 25
max-args = 8