[build-system] requires = ["hatchling>=1.21"] build-backend = "hatchling.build" [project] name = "fable-selfplay" version = "0.2.0" description = "Adversarial self-play framework for the FablePool constitution: red-team agent populations, exploit detection, and the exploit-to-regression-test pipeline." readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "FablePool Contributors" }] keywords = ["governance", "constitution", "self-play", "adversarial", "simulation"] dependencies = [ "pyyaml>=6.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", ] [project.scripts] fable-selfplay = "fable_selfplay.cli:main" [tool.hatch.build.targets.wheel] packages = ["src/fable_selfplay"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q"