forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1011 Bytes
/
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
[tool.poetry]
name = "deepeval"
version = "0.20.81"
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.10,<3.12"
requests = "^2.31.0"
tqdm = "^4.66.1"
pytest = "^7.4.3"
pytest-xdist = "*"
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 = "*"
[tool.black]
line-length = 80
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"