forked from cscheid/fair-classification
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (34 loc) · 907 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
[project]
name = "fair-classification"
version = ""
description = ""
authors = [
{name = "Zafar et al."},
]
dependencies = ["scikit-learn==1.2.0", "cvxpy==1.2.2", "dccp==1.0.3", "scipy==1.9.3", "typing-extensions==4.4.0"]
requires-python = ">=3.8"
license = {text = "GPLv3"}
[tool.ruff]
extend-select = ["SIM"]
ignore = ["E501"]
[tool.pyright]
pythonVersion = "3.8"
exclude = ["**/node_modules", "**/__pycache__", "**/.*"]
typeCheckingMode = "strict"
# these errors are a bit annoying
reportMissingTypeArgument = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"
reportUnknownParameterType = "none"
reportUnknownArgumentType = "none"
extraPaths = ["__pypackages__/3.10/lib/"]
[tool.isort]
profile = "black"
[tool.pdm]
[tool.pdm.build]
includes = ["src"]
[tool.pdm.dev-dependencies]
dev = []
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"