"""govtool: governance-as-code tooling for the FablePool constitution. The package implements the amendment pipeline described in ``docs/pipeline.md``: * :mod:`govtool.model` -- parse the constitution source tree into objects * :mod:`govtool.canonical` -- canonical serialization and content hashing * :mod:`govtool.semver` -- governance semver rules and the PR classifier * :mod:`govtool.proposal` -- proposal documents and lifecycle transitions * :mod:`govtool.keys` -- ed25519 key handling for citizens * :mod:`govtool.eligibility` -- voter eligibility and registry snapshots * :mod:`govtool.tally` -- ballot validation, quorum and approval math * :mod:`govtool.ledger` -- append-only hash-chained public audit log * :mod:`govtool.votegate` -- the CI vote gate orchestrator * :mod:`govtool.fork` -- clone / parameterize / track-upstream tooling * :mod:`govtool.cli` -- the ``govtool`` command line interface """ __version__ = "0.2.0" __all__ = ["__version__"]