-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.23 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
[tool.poetry]
name = "mlconfound"
version = "0.21.3"
description = "Tools for analyzing and quantifying effects of counfounder variables on machine learning model predictions."
authors = ["Tamas Spisak <[email protected]>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/pni-lab/mlconfound"
homepage = "https://mlconfound.readthedocs.io"
documentation = "https://mlconfound.readthedocs.io"
readme = 'README.md'
keywords = [
"machine learning",
"predictive modelling",
"confounding bias",
"conditional independence",
"confounder test"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.7"
joblib = ">=1.0.1"
tqdm = ">=4.62.0"
numpy = ">=1.21.1"
pandas = ">=1.3.1"
scipy = ">=1.7.1"
statsmodels = ">=0.12.2"
pygam = "0.8.0"
seaborn = ">=0.11.1"
graphviz = ">=0.17"
dot2tex = ">=2.11.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"