-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (81 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (81 loc) · 1.59 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "complexity-adaptive-k-dynamic-classifier-selection"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"deslib>=0.3.7",
"imblearn>=0.0",
"liac-arff>=2.5.0",
"numpy<2.0,>=1.24",
"pandas>=2.0",
"problexity>=0.5.11",
"pycol-complexity>=1.0.0",
"scikit-learn<1.4,>=1.3",
"seaborn>=0.13.2",
"tabulate>=0.9.0",
"xgboost>=3.0.5",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"pre-commit>=4.3.0",
"pylint>=4.0.1",
"ruff>=0.6.0",
]
[tool.black]
line-length = 88
target-version = ["py311"]
include = "\\.(py|pyi)$"
extend-exclude = [
"^/data/",
"^/.venv/",
"^/uv.lock",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"I",
"B",
"C4",
"UP",
]
ignore = [
"E501",
"B008",
"C901",
"B905",
"E722",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"too-many-arguments",
"too-many-locals",
"too-many-positional-arguments",
"too-many-statements",
"too-many-branches",
"too-many-nested-blocks",
"invalid-name",
"line-too-long",
"bare-except",
"broad-exception-caught",
"import-outside-toplevel",
"unused-argument",
"unspecified-encoding",
"duplicate-code",
]
[tool.pylint.format]
max-line-length = 88