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
|
[project]
name = "genderbench"
version = "1.1.0"
description = "Evaluation suite for gender biases in LLMs."
authors = []
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.12"
keywords = ["gender-bias", "fairness-ai", "llms", "llms-benchmarking"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"anthropic (>=0.49.0,<0.50.0)",
"fsspec (>=2025.3.0,<2026.0.0)",
"huggingface-hub (>=0.29.3,<0.30.0)",
"jinja2 (>=3.1.6,<4.0.0)",
"nest-asyncio (>=1.6.0,<2.0.0)",
"nltk (>=3.9.1,<4.0.0)",
"numpy (>=2.2.4,<3.0.0)",
"openai (>=1.66.3,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"requests (>=2.32.3,<3.0.0)",
"scipy (>=1.15.2,<2.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
]
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.1"
pytest = "^8.3.5"
sphinx = "^8.2.3"
sphinx-mdinclude = "^0.6.2"
sphinx-rtd-theme = "^3.0.2"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
|