-
Notifications
You must be signed in to change notification settings - Fork 311
/
setup.py
51 lines (49 loc) · 1.35 KB
/
setup.py
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
from setuptools import find_packages, setup
from deepeval._version import __version__
setup(
name="deepeval",
version=__version__,
url="https://github.com/confident-ai/deepeval",
author="Confident AI",
author_email="[email protected]",
description="The open-source LLMs evaluation framework.",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.9, <3.13",
install_requires=[
"requests",
"tqdm",
"pytest",
"tabulate",
"typer",
"rich",
"protobuf",
"pydantic", # loosen pydantic requirements as we support multiple
"sentry-sdk",
"pytest-repeat",
"pytest-xdist",
"portalocker",
"langchain",
"langchain-core",
"langchain_openai",
"langchain-community",
"docx2txt~=0.8",
"importlib-metadata>=6.0.2",
"tenacity~=8.4.1",
"opentelemetry-api>=1.24.0,<2.0.0",
"opentelemetry-sdk>=1.24.0,<2.0.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.24.0,<2.0.0",
"grpcio==1.60.1",
],
extras_require={
"dev": ["black"],
},
entry_points={
"console_scripts": [
"deepeval = deepeval.cli.main:app",
],
"pytest11": [
"plugins = deepeval.plugins.plugin",
],
},
)