-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 988 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 988 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
45
46
47
48
49
50
51
[project]
name = "sonar-bench"
version = "0.1.0"
description = "Retrieval benchmark suite for Sonar (Sonar vs Elasticsearch vs Weaviate)"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ir-datasets>=0.5.6",
"rank-bm25>=0.2.2",
"ir-measures>=0.3.0",
"tqdm>=4.65.0",
"elasticsearch>=8.0.0,<9.0.0",
"weaviate-client>=3.25.0",
"sentence-transformers>=2.2.0",
"tinysegmenter>=0.3",
"datasets>=2.14.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"basedpyright>=1.33.0",
]
[tool.setuptools]
py-modules = []
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.basedpyright]
include = ["retrieval-bench", "rag-bench"]
typeCheckingMode = "standard"