-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "kramabench"
version = "1.0.0.dev0"
description = "KramaBench: A benchmark suite for evaluating AI systems on complex reasoning tasks over data"
authors = [
{ name="KramaBench Contributors" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pandas>=2.2.3",
"numpy>=2.0",
"huggingface-hub>=0.29.0",
"requests>=2.32.0",
"rich>=13.9.0",
"python-dotenv>=1.0.0",
"pillow>=10.0.0",
"jinja2>=3.1.0",
"pyyaml>=6.0",
"typeguard>=4.0.0",
"rouge-score>=0.1.0",
"beautifulsoup4>=4.12.0",
"wikipedia-api>=0.6.0",
"youtube-transcript-api>=0.6.0",
"openai==1.72.0",
]
[project.optional-dependencies]
baselines = [
"litellm>=1.0.0",
"anthropic>=0.7.0",
"ollama>=0.4.0",
"together>=1.0.0",
"PyPDF2>=3.0.0",
]
dev = [
"pytest>=8.0.0",
"ruff>=0.1.0",
]
all = [
"kramabench[baselines,dev]",
]
[tool.pytest.ini_options]
addopts = "-sv --durations=0"
[tool.ruff]
line-length = 119
lint.ignore = [
"F403",
"E501",
]
lint.select = ["E", "F", "I", "W"]
[tool.ruff.lint.isort]
known-first-party = ["kramabench", "benchmark", "systems"]