-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
36 lines (32 loc) · 851 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
[tool.poetry]
name = "llm-sandbox"
version = "0.1.8"
description = "Lightweight and portable LLM sandbox runtime (code interpreter) Python library"
authors = ["Duy Huynh <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/vndee/llm-sandbox"
repository = "https://github.com/vndee/llm-sandbox"
packages = [
{ include = "llm_sandbox" }
]
[tool.poetry.dependencies]
python = "^3.10"
docker = "^7.1.0"
kubernetes = "^30.1.0"
podman = "^5.2.0"
[tool.poetry.extras]
docker = ["docker"]
k8s = ["kubernetes"]
podman = ["podman"]
minimal = []
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pre-commit = "^3.7.1"
langchain = "^0.2.7"
langchain-openai = "^0.1.15"
langchainhub = "^0.1.20"
llama-index = "^0.10.54.post1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"