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
107 lines (93 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
107 lines (93 loc) · 2.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[tool.poetry]
name = "deepeval"
version = "3.9.6"
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"]
deepeval = "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 = "*"
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.4.0"
setuptools = "*"
wheel = "*"
nest_asyncio = "*"
tenacity = ">=8.0.0,<=10.0.0"
opentelemetry-api = "^1.24.0"
opentelemetry-sdk = "^1.24.0"
grpcio = "^1.67.1"
posthog = [
{ version = ">=5.4.0, <7.0.0", python = "<3.10" },
{ version = ">=7.0.0, <8.0.0", python = ">=3.10" }
]
pyfiglet = "*"
python-dotenv = "^1.1.1"
pydantic = "^2.11.7"
pydantic-settings = "^2.10.1"
jinja2 = "*"
[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 = "*"
pandas = "*"
pysqlite3-binary = { version = "^0.5.4", markers = "platform_system == 'Linux'" }
pre-commit = "^4.3.0"
ruff = "^0.13.0"
ollama = "*"
anthropic = "*"
google-genai = "^1.9.0"
[tool.black]
line-length = 80
[tool.ruff]
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",
"enable_dotenv: allow this test to load .env files via autoload_dotenv()",
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.poetry.group.integrations]
optional = true
[tool.poetry.group.integrations.dependencies]
crewai = { version = "*", python = ">=3.10,<3.14" }
pydantic-ai = { version = "*", python = ">=3.10,<3.14" }
llama-index = "^0.14.4"
openai-agents = "^0.3.3"
[tool.poetry.group.langchain]
optional = true
[tool.poetry.group.langchain.dependencies]
langchain = { version = "1.2.4", python = ">=3.10,<4.0" }
langchain-openai = { version = "1.1.7", python = ">=3.10,<4.0" }
langgraph = { version = "1.0.7", python = ">=3.10,<4.0" }