29 lines
538 B
TOML
29 lines
538 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>=8.0"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
markers = [
|
|
"unit: pure-Python tests, no Docker required",
|
|
"integration: tests that spin up a real Docker container",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"coverage>=7.13.5",
|
|
]
|