kings-guard/pyproject.toml
tegwick 31e9963933 Admit source evidence snapshots and harden stream completeness
Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a06e89-93a2-7aa2-82b3-ce5ccd2682e6
2026-09-05 00:42:19 +02:00

49 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kings-guard"
version = "0.1.0"
description = "Adaptive security contract and posture-evaluation scaffold for complex multi-tenant cloud environments."
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
authors = [{ name = "Coulomb" }]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.2,<9.0",
"ruff>=0.6,<1.0",
# Reads layer.yaml in scripts/check_layer_conformance.py. Deliberately a
# DEV dependency: `dependencies = []` above is load-bearing for the §5
# no-Tooling-client claim and must stay empty.
"pyyaml>=6.0,<7.0",
"jsonschema>=4.23,<5",
]
[project.scripts]
kings-guard-demo = "kings_guard.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
kings_guard = ["fixtures/*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--strict-markers",
"--disable-warnings",
"--tb=short",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]