secrets-engine/pyproject.toml
tegwick f4b4dd6b17
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 2s
Use bounded Railiance time for protected validity checks
Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a09cbb-87c6-7900-a145-4ce53ba9f1a6
2026-09-15 22:16:31 +02:00

34 lines
791 B
TOML

[project]
name = "secrets-engine"
version = "0.1.0"
description = "Decision-aware workflow and automation layer for approved secret custody, delivery, and lifecycle work, backed by OpenBao."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "see LICENSE" }
authors = [{ name = "NetKingdom / Custodian" }]
dependencies = [
"PyYAML>=6.0",
]
[project.optional-dependencies]
clock = ["railiance-clock==0.1.0"]
dev = [
"pytest>=7.4",
]
[project.scripts]
secrets-engine = "secrets_engine.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/secrets_engine"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.uv.sources]
railiance-clock = { path = "../railiance-clock" }