pyproject.toml
| 1 | [build-system] |
| 2 | requires = ["hatchling"] |
| 3 | build-backend = "hatchling.build" |
| 4 | |
| 5 | [project] |
| 6 | name = "pqc-enclave-sdk" |
| 7 | version = "0.1.0" |
| 8 | description = "PQC Secure Enclave SDK for on-device AI. ML-KEM-768 key encapsulation + AES-256-GCM encrypted model weights and credentials, pluggable backends for iOS Secure Enclave, Android StrongBox, Qualcomm QSEE." |
| 9 | readme = "README.md" |
| 10 | license = "Apache-2.0" |
| 11 | requires-python = ">=3.10" |
| 12 | authors = [{ name = "Dyber PQC" }] |
| 13 | keywords = ["pqc", "secure-enclave", "on-device-ai", "ios", "android", "ml-kem", "aes-gcm", "strongbox", "neural-engine"] |
| 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_enclave_sdk"] |
| 31 | |
| 32 | [tool.pytest.ini_options] |
| 33 | testpaths = ["tests"] |
| 34 | |