-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 1003 Bytes
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
[project]
name = "aequitas"
version = "1.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.10, <3.14"
dependencies = [
"matplotlib>=3.10.0",
"pandas>=2.0.3, <3.0.0",
"pyyaml>=6.0.2",
"seaborn>=0.13.2",
"altair>=5.5.0",
"scipy>=1.10.1",
"validators>=0.33.0",
"numpy>=1.26.0",
"fastparquet>=2024.11.0",
"requests>=2.32.3",
]
[project.optional-dependencies]
cli = [
"sqlalchemy>=1.1.1",
"tabulate>=0.9.0",
"xhtml2pdf>=0.2.15",
"ohio>=0.2.0",
"markdown2>=2.3.5",
]
webapp = [
"flask>=2.0.0",
"flask-bootstrap>=3.3.7.1"
]
flow = [
"torch>=2.4.0",
"optuna>=3.6.1",
"aif360>=0.6.1",
"lightgbm>=4.5.0",
"fairgbm>=0.9.14",
"fairlearn>=0.10.0",
"hydra-core>=1.3.2",
"hyperparameter-tuning>=0.3.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.6.2",
"pytest>=8.3.2",
"pytest-cov>=5.0.0",
"ipykernel>=6.29.5",
]