-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (32 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "llama-iris"
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
version = "0.5.1"
description = "Interface between LLMs and your data"
authors = ["Dmitry Maslennikov <[email protected]>"]
keywords = ["LLM", "NLP", "RAG", "data", "devtools", "index", "retrieval", "iris"]
license = "MIT"
readme = "README.md"
packages = [{include = "llama_iris"}]
repository = "https://github.com/caretdev/llama-iris"
[tool.poetry.dependencies]
python = "^3.9"
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
llama-index = "^0.10.0"
pandas = "^2.2.0"
sqlalchemy-iris = "^0.14.0"
[tool.poetry.group.dev.dependencies]
pytest = "7.2.1"
pytest-asyncio = "0.21.0"
pytest-dotenv = "0.5.2"
pytest-mock = "3.11.1"
testcontainers-iris = "^1.1.0"
testcontainers = "^3.7.1"
tox = "^4.12.1"