pyproject.toml
1.2 KB · 42 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-ebpf-attestation"
7 version = "0.1.0"
8 description = "PQC-signed load gate for eBPF programs on AI inference servers. ML-DSA signatures, allow-list policy, audit log for every load attempt."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "ebpf", "kernel", "attestation", "ml-dsa", "linux", "inference"]
14 classifiers = [
15 "Development Status :: 4 - Beta",
16 "Environment :: Console",
17 "Intended Audience :: Developers",
18 "License :: OSI Approved :: Apache Software License",
19 "Programming Language :: Python :: 3",
20 "Topic :: Security :: Cryptography",
21 "Topic :: System :: Operating System Kernels :: Linux",
22 ]
23 dependencies = [
24 "quantumshield>=0.1.0",
25 "click>=8.0",
26 ]
27
28 [project.optional-dependencies]
29 dev = ["pytest", "ruff", "mypy"]
30
31 [project.scripts]
32 pqc-bpf = "pqc_ebpf_attestation.cli:main"
33
34 [tool.hatch.build.targets.wheel]
35 packages = ["src/pqc_ebpf_attestation"]
36
37 [tool.hatch.build.targets.sdist]
38 include = ["src/", "tests/", "examples/", "README.md", "LICENSE", "pyproject.toml"]
39
40 [tool.pytest.ini_options]
41 testpaths = ["tests"]
42