-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.51 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
[tool.poetry]
name = "biaslyze"
version = "0.1.0"
description = "The NLP Bias Identification Toolkit"
authors = [
"Tobias Sterbak & Stina Lohmüller <hello@biaslyze.org>",
]
maintainers = [
"Tobias Sterbak <hello@tobiassterbak.com>",
"Stina Lohmüller <slohmueller@posteo.de>",
]
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://biaslyze.org"
repository = "https://github.com/biaslyze-dev/biaslyze/issues"
keywords = ["NLP", "bias", "ethics", "fairness"]
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "<3.11,>=3.10"
numpy = ">=1.25.0"
pandas = "^1.5.3"
scipy = "^1.11.1"
jupyterlab = "^3.5.2"
scikit-learn = "^1.2.0"
loguru = "^0.6.0"
matplotlib = "^3.7.1"
spacy = "^3.5.0"
dash = "^2.11.1"
plotly = "^5.15.0"
dill = "^0.3.7"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
ruff = "^0.0.254"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
mypy = "^1.5.1"
types-tqdm = "^4.66.0.1"
pandas-stubs = "^2.0.3.230814"
types-PyYAML = "^6.0.12.11"
types-pytz = "^2023.3.0.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.1"
material-plausible-plugin = "^0.2.0"
mkgendocs = "^0.9.2"
Pillow = "^10.0.0"
CairoSVG = "^2.7.0"
pydocstyle = "^6.3.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"