forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.14 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
[tool.poetry]
name = "deepeval"
version = "0.20.51"
description = "The Evaluation Framework for LLMs"
authors = ["Jeffrey Ip <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/confident-ai.com/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"
transformers = "^4.34.1"
pytest = "^7.4.3"
pytest-xdist = "*"
pytest-rerunfailures = "^12.0"
pytest-asyncio = "^0.21.1"
tabulate = "^0.9.0"
sentence-transformers = "^2.2.2"
sentry-sdk = "^1.33.1"
rouge-score = "^0.1.2"
nltk = "^3.8.1"
bert-score = "^0.3.13"
rich = "^13.6.0"
torch = ">=2.0.0, !=2.0.1, !=2.1.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"