forked from confident-ai/deepeval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.01 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
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 evaluation framework for LLMs.",
packages=find_packages(),
install_requires=[
"requests",
"tqdm",
"pytest",
"tabulate",
"pytest",
"typer",
"rich",
"protobuf==4.25.1",
"pydantic", # loosen pydantic requirements as we support multiple
"sentry-sdk",
"pytest-xdist",
"portalocker",
"langchain",
"langchain-core",
"langchain_openai",
"ragas",
],
extras_require={
"dev": ["black"],
},
entry_points={
"console_scripts": [
"deepeval = deepeval.cli.main:app",
],
"pytest11": [
"plugins = deepeval.plugins.plugin",
],
},
)