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