ops-mason/pyproject.toml

26 lines
545 B
TOML
Raw Normal View History

[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"]