-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
37 lines (32 loc) · 951 Bytes
/
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
[tool.poetry]
name = "tonic-validate"
version = "6.2.0"
description = "RAG evaluation metrics."
authors = ["Joe Ferrara <joeferrara@tonic.ai>", "Ethan Philpott <ephilpott@tonic.ai>", "Adam Kamor <adam@tonic.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
openai = ">=1.0.0"
tiktoken = "^0.7.0"
appdirs = "^1.4.4"
python-dotenv = "^1.0.1"
tqdm = "^4.66.2"
pydantic = "^2.6.4"
typing-extensions = "^4.10.0"
litellm = "^1.35.8"
google-generativeai = { version = "^0.5.2", python = ">=3.9" }
aioboto3 = "^12.4.0"
[tool.poetry.group.validate_dev.dependencies]
sphinx = "^7.0.0"
sphinx-rtd-theme = ">=1.2,<3.0"
ruff = ">=0.1.15,<0.5.0"
tonic-textual = ">=1.0.5,<3.0.0"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
[tool.ruff]
include = ["pyproject.toml", "tonic_validate/**/*.py"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"