Files
sand-boxer/pyproject.toml
tegwick 8e0465865a Finish SAND-WP-0002: remote smoke, podman-compose, HTTP stub
- T10 smoke passed on CoulombCore (sand-boxer self-deploy, sandbox 4e542c51)
- Add e2e smoke compose, scripts/smoke-compose-e2e.sh, make smoke-remote
- Support SANDBOXER_COMPOSE_CMD for podman-compose hosts
- FastAPI v0 stub at sandboxer.api.app; migration gaps doc
- Mark workplan finished (all 10 tasks done)
2026-06-23 16:52:29 +02:00

44 lines
843 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sandboxer"
version = "0.0.0"
description = "Sandbox provisioning meta-framework for Custodian"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT-0"
dependencies = [
"typer>=0.12",
"pydantic>=2.0",
"pyyaml>=6.0",
"httpx>=0.27",
"fastapi>=0.115",
]
[project.scripts]
sandboxer = "sandboxer.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/sandboxer"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-ra --strict-markers --strict-config"
[tool.ruff]
src = ["src", "tests"]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.6",
"uvicorn[standard]>=0.32",
]