pyproject.toml
1.0 KB · 34 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-kv-cache-encryption"
7 version = "0.1.0"
8 description = "PQC-native per-tenant KV cache encryption for multi-tenant LLM inference. ML-KEM-768 derived session keys, AES-256-GCM per-entry encryption, automatic key rotation, tenant isolation enforcement."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "llm", "kv-cache", "multi-tenant", "ml-kem", "aes-gcm", "inference", "privacy"]
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_kv_cache"]
31
32 [tool.pytest.ini_options]
33 testpaths = ["tests"]
34