[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "fablepool-govtool" version = "0.2.0" description = "Governance-as-code tooling for the FablePool open source constitution: amendment pipeline, vote gate, semver classifier, fork tooling, and audit ledger." readme = "README.md" license = { text = "MIT" } requires-python = ">=3.10" authors = [{ name = "FablePool Contributors" }] keywords = ["governance", "constitution", "voting", "audit", "semver"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Version Control", ] dependencies = [ "PyYAML>=6.0", "cryptography>=42.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", ] [project.scripts] govtool = "govtool.cli:main" [project.urls] Homepage = "https://github.com/fablepool/constitution" Documentation = "https://github.com/fablepool/constitution/tree/main/docs" [tool.hatch.build.targets.wheel] packages = ["src/govtool"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-q"