generated from coulomb/repo-seed
Add meta-framework spec, pydantic schemas, profile/extension YAML, extension registry, ext.compose-ssh backend, SandboxManager with State Hub events, CLI commands, integration docs, capability registry entry, and compose-e2e runbook. Nine unit tests pass. T10 remote smoke test remains for operator.
42 lines
790 B
TOML
42 lines
790 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",
|
|
]
|
|
|
|
[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",
|
|
] |