pyproject.toml
1015 B · 33 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-ai-governance"
7 version = "0.1.0"
8 description = "PQC Byzantine fault-tolerant consensus for federated AI governance. ML-DSA signed policy proposals, vote tallying with threshold, quantum-safe authorization chains for enterprise AI."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "consensus", "byzantine", "governance", "ml-dsa", "enterprise-ai", "authorization", "dao"]
14 classifiers = [
15 "Development Status :: 4 - Beta",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: Apache Software License",
18 "Programming Language :: Python :: 3",
19 "Topic :: Security :: Cryptography",
20 ]
21 dependencies = [
22 "quantumshield>=0.1.0",
23 ]
24
25 [project.optional-dependencies]
26 dev = ["pytest", "ruff", "mypy"]
27
28 [tool.hatch.build.targets.wheel]
29 packages = ["src/pqc_ai_governance"]
30
31 [tool.pytest.ini_options]
32 testpaths = ["tests"]
33