pyproject.toml
854 Bytes
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
[project]
name = "weknora-ragas-eval"
version = "0.1.0"
description = "Independent Ragas evaluation pipeline for WeKnora public APIs."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ragas>=0.3,<0.5",
"datasets>=2.19.0",
"pandas>=2.2.0",
"openpyxl>=3.1.0",
"requests>=2.32.0",
"sseclient-py>=1.8.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"langchain>=0.2.0",
"langchain-community>=0.2.0",
"langchain-openai>=0.1.0",
"pypdf>=4.2.0"
]
[project.optional-dependencies]
pdf = [
"pymupdf>=1.24.0",
"pdfplumber>=0.11.0"
]
dev = [
"ruff>=0.6.0",
"pytest>=8.0.0"
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]