sand-boxer/pyproject.toml
tegwick be42de7caf
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
Package sandbox definitions and build a pinned owner runtime
Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a07ff8-19d0-7820-b4d0-1353833cb7fc
2026-09-09 22:54:39 +02:00

48 lines
No EOL
973 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.hatch.build.targets.wheel.force-include]
"profiles" = "sandboxer/data/profiles"
"extensions" = "sandboxer/data/extensions"
[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",
]