forked from ustunb/actionable-recourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.61 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
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
[project]
name = "actionable-recourse"
version = "1.0.1"
description = "actionable-recourse is a python library for recourse verification and reporting."
authors = [
{ name = "Berk Ustun", email = "[email protected]" },
{ name = "Alexander Spangher", email = "[email protected]" },
]
dependencies = [
"numpy>=1.14.0",
"scipy>=0.19.1",
"scikit-learn>=0.19.1",
"pandas>=0.23.4",
"cplex>=12.8",
"mip==1.12.0",
"prettytable>=0.7.2",
"matplotlib>=3.0.2",
"seaborn>=0.9.0",
"traitlets>=4.3.2",
"IPython>=7.2.0",
"tqdm>=4.24.0",
"jinja2>=2.10.1",
]
readme = "README.md"
requires-python = ">= 3.10, < 3.12"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=4.3.0",
"ruff~=0.4.6",
"pandas-stubs~=2.2.2.240514",
]
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"
reportUnknownMemberType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportUnknownArgumentType = "none"
reportMissingTypeArgument = "none"
ignore = ["examples/**", "tests/**"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "W", "I", "UP", "PD"]
ignore = ["PD901"]
[tool.ruff.lint.isort]
known-third-party = ["matplotlib", "numpy", "pandas"]
extra-standard-library = ["typing_extensions"]
no-lines-before = ["future", "standard-library"]
force-sort-within-sections = true
split-on-trailing-comma = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/actionable_recourse"]