-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 878 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
[project]
name = "drbench"
version = "0.2.1"
description = "Benchmark tool for DR systems"
authors = [{ name = "ServiceNow Research" }]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"requests>=2.32.3,<3.0.0",
"openai>=1.65.4,<2.0.0",
"bs4 (>=0.0.2,<0.0.3)",
"pandas (>=2.2.3,<3.0.0)",
"tiktoken>=0.8.0",
"openpyxl",
"scikit-learn (>=1.7.0,<2.0.0)",
"faiss-cpu (>=1.9.0,<2.0.0)",
"pymupdf (>=1.26.3,<2.0.0)",
"python-dotenv>=1.0.0",
"python-docx>=1.2.0",
"omegaconf>=2.3.0",
"docker>=7.1.0",
"tenacity>=9.1.2",
"together>=1.5.26",
]
[tool.setuptools.packages.find]
include = ["drbench*"]
[tool.setuptools.package-data]
drbench = ["data/**/*"]
[project.urls]
repository = "https://github.com/ServiceNow/drbench"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
testpaths = ["tests"]