31 lines
687 B
TOML
31 lines
687 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]
|
||
|
|
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"
|