-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
98 lines (87 loc) · 1.95 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
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
90
91
92
93
94
95
96
97
98
[project]
name = "clusterxplain"
version = "0.1.0"
[tool.poetry]
name = "clusterxplain"
version = "0.1.0"
description = "Provide feature relevance scores fo clustering."
authors = ["Alexander Fottner <alexander.fottner@uni-a.de>", "Jonathan Pfahler"]
license = "MIT"
packages = [
{ include = "cxplain", from = "src" },
]
include = ["src/cxplain/res/*"]
readme = "README.md"
documentation = "https://readthedocs.org/projects/cluster-explain/"
repository = "https://github.com/AlexF1994/cluster-explain"
[tool.poetry.urls]
"Changelog" = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
pyhocon = "^0.3.54"
importlib-metadata = {version = "^1.0", python = "<3.8"}
matplotlib = "^3.6.0"
scikit-learn = "^1.1.2"
pandas = "^1.5.0"
nptyping = "^2.3.1"
shap = "^0.41.0"
ExKMC = "^0.0.3"
seaborn = "^0.12.2"
[tool.poetry.dev-dependencies]
black = "22.3.0"
pre-commit = "^2.2.0"
pytest = "^5.4.0"
pytest-cov = "^2.8.0"
jupyterlab = "^3.0.5"
bandit = "^1.7.4"
mypy = "^0.981"
isort = "^5.10.1"
ipykernel = "^6.16.0"
ruff = "^0.0.270"
pywin32 = {version = "300", platform = "win32"}
twine = "4.0.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
nbsphinx = "^0.9.3"
sphinxcontrib-bibtex = "^2.6.1"
sphinx-codeautolink = "^0.15.0"
furo = "*"
[tool.ruff]
line-length = 120
ignore = ["F821"]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
target-version = "py39"
[tool.ruff.pycodestyle]
max-doc-length = 180
[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[tool.ruff.pydocstyle]
convention = "google"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"