-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.03 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
[tool.poetry]
name = "ragulate"
version = "0.0.1"
description = "A tool for evaluating RAG pipelines"
authors = ["Eric Pinzur <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "ragulate"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
trulens-eval = ">=0.31"
kaleido = "0.2.1"
inflection = "^0.5.1"
llama-index-core = "^0.10.31"
numpy = ">=1.23.5"
pandas = ">=2.2.2"
plotly = "^5.22.0"
python-dotenv = ">=1.0.0"
tqdm = ">=4.66.1"
pyyaml = "^6.0.1"
cerberus = "^1.3.5"
pydantic = "^2.7.3"
setuptools = "^70.0.0"
aiofiles = "^24.1.0"
seaborn = "^0.13.2"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
isort = "^5.13.2"
langchain-astradb = "0.3.3"
langchain-community = "0.0.38"
langchain-core = "0.1.52"
langchain-openai = "0.1.3"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ragulate = "ragulate.cli:main"
test_unit = "scripts.test_unit_runner:main"
test_integration = "scripts.test_integration_runner:main"