forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 1.66 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "deepeval"
version = "3.4.7"
description = "The LLM Evaluation Framework"
authors = ["Jeffrey Ip <jeffreyip@confident-ai.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/confident-ai/deepeval"
documentation = "https://deepeval.com"
exclude = ["tests/*", "tracing_tests/*"]
[tool.poetry.scripts]
deepeval = 'deepeval.cli.main:app'
[tool.poetry.plugins."pytest11"]
plugins = "deepeval.plugins.plugin"
[tool.poetry.dependencies]
python = ">=3.9, <4.0"
requests = "^2.31.0"
tqdm = "^4.66.1"
pytest = "*"
pytest-xdist = "*"
pytest-repeat = "*"
pytest-rerunfailures = "^12.0"
pytest-asyncio = "*"
tabulate = "^0.9.0"
sentry-sdk = "*"
rich = ">=13.6.0, <15.0.0"
portalocker = "*"
openai = "*"
aiohttp = "*"
typer = ">=0.9,<1.0.0"
click=">=8.0.0,<8.3.0"
ollama="*"
setuptools = "*"
wheel = "*"
nest_asyncio = "*"
tenacity = ">=8.0.0,<=10.0.0"
opentelemetry-api = "^1.24.0"
opentelemetry-sdk = "^1.24.0"
opentelemetry-exporter-otlp-proto-grpc = "^1.24.0"
grpcio = "^1.67.1"
anthropic = "*"
google-genai = "^1.9.0"
posthog = "^6.3.0"
pyfiglet = "*"
python-dotenv = "^1.1.1"
pandas = "*"
datasets = "*"
[tool.poetry.group.dev.dependencies]
twine = "5.1.1"
black = {extras = ["jupyter"], version = "^25.1.0"}
chromadb = "*"
langchain = "*"
langchain_core = "*"
langchain_community = "*"
langchain_text_splitters = "*"
tiktoken = "*"
pypdf = "*"
docx2txt = "*"
[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",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"