-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.21 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
[tool.poetry]
name = "pipeline_tabular"
version = "0.1.0"
description = ""
authors = ["cardionaut"]
[tool.poetry.dependencies]
python = "^3.9.13"
loguru = "^0.6.0"
nibabel = "^4.0.1"
openpyxl = "^3.0.10"
xlrd = "^2.0.0"
fastparquet = "^0.8.1"
matplotlib = "^3.5.3"
seaborn = "^0.13.0"
glueviz = "^1.2.0"
glue-vispy-viewers = "^1.0.5"
glue-plotly = "^0.3"
specviz = "^0.8"
pylint = "^2.15.0"
jupyter = "^1.0.0"
notebook = "^6.4.12"
omegaconf = "^2.2"
scikit-learn = "1.2.2"
xlsxwriter = "^3.0.7"
umap-learn = "^0.5"
category_encoders = "^2.6.0"
xgboost = "^1.7.3"
lightgbm = "^3.3.5"
imbalanced-learn = "^0.10.1"
featurewiz = "^0.2.4"
kaleido = "0.2.1"
dictlib = "^1.1.5"
mrmr-selection = "^0.2.6"
alibi = "^0.9.3"
shap = "*"
roc-utils = "^0.2.2"
pingouin = "*"
[tool.poetry.group.dev.dependencies]
autohooks = "^23.1.0"
autohooks-plugin-black = "^22.11.0"
autohooks-plugin-isort = "^22.8.0"
pytest = "^7.2.1"
black = "^22.6.0"
isort = "^5.10.1"
[tool.autohooks]
mode = "poetry"
pre-commit = ["autohooks.plugins.black", "autohooks.plugins.isort"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
profile = "black"