-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1010 Bytes
/
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
[tool.poetry]
name = "reachml"
version = "0.1.0"
description = "Recourse verification with reachable sets"
authors = ["Berk Ustun <berk@ucsd.edu>",
"Bogdan Kulynych <bogdan@kulyny.ch>",
"Avni Kothari <akothari@ucsd.edu>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.26.4"
pandas = "^2.2.2"
tqdm = "^4.66.4"
prettytable = "^3.10.0"
h5py = "^3.11.0"
cplex = { version = "^22.1.1.2", optional = true }
[tool.poetry.extras]
cplex = ["cplex"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
pytest = "^8.2.0"
[tool.poetry.group.iclr2024]
optional = true
[tool.poetry.group.iclr2024.dependencies]
pytest = "^8.2.0"
jupyter = "^1.0.0"
seaborn = "^0.13.2"
matplotlib = "^3.8.4"
xgboost = "^2.0.3"
scikit-learn = "^1.4.2"
imblearn = "^0.0"
dill = "^0.3.8"
ipdb = "^0.13.13"
rich = "^13.7.1"
recourse = "1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"