pyproject.toml
1.1 KB · 37 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-gpu-driver"
7 version = "0.1.0"
8 description = "PQC-hardened framework for encrypted CPU-GPU tensor transfers and driver attestation. ML-KEM-768 channel keys, AES-256-GCM per-transfer, ML-DSA driver attestation. Pluggable CUDA/ROCm backends."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "gpu", "cuda", "rocm", "confidential-computing", "ml-kem", "ml-dsa", "inference"]
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 "cryptography>=41.0",
24 ]
25
26 [project.optional-dependencies]
27 dev = ["pytest", "ruff", "mypy"]
28
29 [tool.hatch.build.targets.wheel]
30 packages = ["src/pqc_gpu_driver"]
31
32 [tool.hatch.build.targets.sdist]
33 include = ["src/", "tests/", "examples/", "README.md", "LICENSE", "pyproject.toml"]
34
35 [tool.pytest.ini_options]
36 testpaths = ["tests"]
37