forked from stlbnmaria/project-fairness-interpretability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
103 lines (96 loc) · 1.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "project-fairness-interpretability"
authors = [
{ name = "DataThomas", email = "sch.thomas@live.de" },
{ name = "harshitshangari", email = "hshangari@gmail.com" },
{ name = "stlbnmaria", email = "maria.stlbn@hotmail.de" },
{ name = "AbsSEnT", email = "alekseyevnf@gmail.com" },
{ name = "KadUsh2001", email = "joaohfpmelo@gmail.com" },
{ name = "LizaBarysheva", email = "elizaveta.barysheva@hec.edu" },
]
description = ""
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.9"
[project.urls]
"Homepage" = "https://github.com/stlbnmaria/project-fairness-interpretability"
[tool.setuptools]
packages = ["src", "config"]
[tool.ruff]
select = [
"E",
"W",
"F",
"I",
"N",
"D",
"ANN",
"Q",
"RET",
"ARG",
"PTH",
"PD",
] # See: https://beta.ruff.rs/docs/rules/
ignore = [
"D100",
"D101",
"D103",
"D106",
"D203",
"D213",
"D416",
"ANN101",
"ANN102",
"N803",
"PTH123",
"PD901",
"RET504",
"N806",
"I001",
]
line-length = 100
target-version = "py310"
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[tool.ruff.pydocstyle]
convention = "google"
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html
[tool.black]
line-length = 100
target-version = ["py310"]
include = '\.pyi?$|\.ipynb'
exclude = '''
(
/(
\.direnv
| \.eggs
| \.git
| \.tox
| \.venv
| _build
| build
| dist
| venv
)/
)
'''
[tool.isort]
profile = "black"