-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.24 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
[project]
name = "graphrag-eval"
version = "6.1.1a0"
description = "For assessing question answering systems' final answers and intermediate steps, against a given set of questions, reference answers and steps."
authors = [
{ name = "Philip Ganchev", email = "philip.ganchev@graphwise.ai" },
{ name = "Aleksis Datseris", email = "aleksis.datseris@graphwise.ai" },
{ name = "Neli Hateva", email = "neli.hateva@graphwise.ai" },
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12,<3.13"
[project.urls]
repository = "https://github.com/Ontotext-AD/graphrag-eval"
[tool.poetry.dependencies]
python-dateutil = "2.9.0.post0"
ragas = { version = "0.4.3", optional = true }
pydantic = "2.12.5"
[tool.poetry.extras]
llm = ["ragas", "litellm", "pyyaml"]
[tool.poetry.group.llm.dependencies]
ragas = "0.4.3"
litellm = "1.83.14"
pyyaml = "6.0.3"
[tool.poetry.group.llm]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "<10,>=9.0.3"
pytest-asyncio = "1.3.0"
pytest-cov = "<8,>=7"
jsonlines = "4.0.0"
pyyaml = "6.0.3"
[tool.poetry.group.test]
optional = true
[project.scripts]
answer-correctness = "graphrag_eval.answer_correctness:main"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"