forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.28 KB
/
pyproject.toml
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
61
[tool.poetry]
name = "deepeval"
version = "0.21.65"
description = "The Evaluation Framework for LLMs"
authors = ["Jeffrey Ip <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/confident-ai/deepeval"
documentation = "https://docs.confident-ai.com"
[tool.poetry.scripts]
deepeval = 'deepeval.cli.main:app'
[tool.poetry.plugins."pytest11"]
plugins = "deepeval.plugins.plugin"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
requests = "^2.31.0"
tqdm = "^4.66.1"
pytest = "^7.4.3"
pytest-xdist = "*"
pytest-repeat = "*"
pytest-rerunfailures = "^12.0"
pytest-asyncio = "^0.21.1"
tabulate = "^0.9.0"
sentry-sdk = "^1.33.1"
rich = "^13.6.0"
ragas = "*"
coverage = "*"
black = "*"
portalocker = "*"
openai = "*"
langchain = "*"
langchain-core = "*"
langchain_openai = "*"
protobuf = "*"
typer = "*"
setuptools = "*"
wheel = "*"
aiohttp = "*"
llama-index = "*"
docx2txt = "^0.8"
importlib-metadata = ">=6.0.2"
tenacity = "^8.2.3"
opentelemetry-api = "^1.14.0"
opentelemetry-sdk = "^1.14.0"
opentelemetry-exporter-otlp-proto-grpc = "^1.24.0"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-m 'not skip_test'"
markers = [
"skip_test: skip the test",
]