17 lines
301 B
TOML
17 lines
301 B
TOML
[project]
|
|
name = "docker-agent-sandbox"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"docker>=7.1.0",
|
|
"langchain-core>=1.2.24",
|
|
"loguru>=0.7.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|