-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.04 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
[tool.poetry]
name = "pyartemis"
packages = [
{ include = "artemis" }
]
version = "0.1.5"
description = "A Python package with explanation methods for extraction of feature interactions from predictive models"
readme = "README.md"
documentation = "https://pyartemis.github.io/"
keywords = ["interactions", "xai", "Explainable Artificial Intelligence", "explanations", "machine learning", "iml", "Interpretable Machine Learning"]
authors = ["Artur Żółkowski <[email protected]>", "Mateusz Krzyziński <[email protected]>", "Paweł Fijałkowski <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.5.1"
numpy = "^1.22.0"
scikit-learn = "^1.1.3"
seaborn = "^0.12.1"
ipykernel = "^6.17.0"
tqdm = "^4.64.1"
networkx = "^2.8.8"
[tool.poetry.dev-dependencies]
black = {version = "^22.10.0", allow-prereleases = true}
xgboost = "^1.7.1"
lightgbm = "^3.2.0"
parameterized = "^0.8.1"
pytest = "^7.2.0"
pdoc3 = "^0.10.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"