pyproject.toml
1.1 KB · 36 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-hypervisor-attestation"
7 version = "0.1.0"
8 description = "PQC-signed hypervisor memory attestation framework for AI workloads. ML-DSA signed claims about memory region state, pluggable backends for AMD SEV-SNP and Intel TDX."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "hypervisor", "attestation", "confidential-computing", "sev-snp", "tdx", "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_hypervisor_attestation"]
30
31 [tool.hatch.build.targets.sdist]
32 include = ["src/", "tests/", "examples/", "README.md", "LICENSE", "pyproject.toml"]
33
34 [tool.pytest.ini_options]
35 testpaths = ["tests"]
36