pyproject.toml
1022 B · 34 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-bootloader"
7 version = "0.1.0"
8 description = "PQC-native signed-boot framework for AI appliances. ML-DSA-65 firmware signatures, measured-boot PCR chains, update-chain verification, manufacturer key-ring."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "bootloader", "firmware", "secure-boot", "ml-dsa", "post-quantum", "appliance", "measured-boot"]
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 "Topic :: System :: Boot",
21 ]
22 dependencies = [
23 "quantumshield>=0.1.0",
24 ]
25
26 [project.optional-dependencies]
27 dev = ["pytest", "ruff", "mypy"]
28
29 [tool.hatch.build.targets.wheel]
30 packages = ["src/pqc_bootloader"]
31
32 [tool.pytest.ini_options]
33 testpaths = ["tests"]
34