ops-mason/pyproject.toml
tegwick 2b318634b6 build: add guarded Kubernetes plane executor
Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a02878-7c21-7692-bcd6-ce2838c4b448
2026-08-22 11:23:38 +02:00

25 lines
545 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ops-mason"
version = "0.1.0"
description = "Builder of NetKingdom security infrastructure (AppRoles, policies, KV paths) for ops-warden to route to"
requires-python = ">=3.11"
dependencies = [
"PyYAML>=6.0",
]
[project.scripts]
ops-mason = "ops_mason.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8"]
[tool.hatch.build.targets.wheel]
packages = ["src/ops_mason"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]