-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
72 lines (67 loc) · 1.84 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "imodels"
version = "2.0.3"
description = "Implementations of various interpretable models"
readme = "readme.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Chandan Singh", email = "csinva23@gmail.com" },
{ name = "Keyan Nasseri" },
{ name = "Matthew Epland" },
{ name = "Yan Shuo Tan" },
{ name = "Omer Ronen" },
{ name = "Tiffany Tang" },
{ name = "Abhineet Agarwal" },
{ name = "Theo Saarinen" },
{ name = "Bin Yu", email = "binyu@berkeley.edu" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib",
"mlxtend", # some lower versions are missing fpgrowth
"numpy",
"pandas",
"requests", # used in c4.5
"scipy",
"scikit-learn", # 1.6.0 has issue with ensemble models
"tqdm" # used in BART
]
[project.urls]
Homepage = "https://github.com/csinva/imodels"
Repository = "https://github.com/csinva/imodels"
[tool.setuptools.packages.find]
include = ["imodels*"]
exclude = ["notebooks*", "tests*", "docs*"]
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"jupytext",
"matplotlib",
"pdoc3",
"pytest",
"pytest-cov",
"slurmpy",
"tqdm",
"pmlb",
"dvu",
"gdown",
]
# Optional algorithm deps mentioned in setup.py comments
[project.optional-dependencies]
optional = [
"cvxpy", # for slim
"gosdt-deprecated", # for OptimalTreeClassifier
"irf", # for IterativeRandomForestClassifier
"statsmodels", # for bartpy
"torch", # for imodels.util.neural_nets
"interpret", # for imodels.algebraic.gam_multitask
"glmnet", # for imodels.tree.rf_plus.rf_plus; this is deprecated - should remove
]