pyproject.toml
989 B · 33 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-mbom"
7 version = "0.1.0"
8 description = "PQC-signed AI Model Bill of Materials (MBOM). Cryptographically enumerate every model component (weights, training data, fine-tuning, RLHF, quantization, evals) with quantum-safe ML-DSA signatures."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "mbom", "sbom", "ai-model", "provenance", "supply-chain", "ml-dsa"]
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_mbom"]
30
31 [tool.pytest.ini_options]
32 testpaths = ["tests"]
33