pyproject.toml
1.3 KB · 41 lines · toml Raw
1 [build-system]
2 requires = ["hatchling"]
3 build-backend = "hatchling.build"
4
5 [project]
6 name = "pqc-agent-wallet"
7 version = "0.1.0"
8 description = "Quantum-resistant credential wallet for AI agents. ML-KEM-768 key encapsulation, AES-256-GCM at rest, ML-DSA signed access audit log. LangChain/AutoGen/CrewAI integrations."
9 readme = "README.md"
10 license = "Apache-2.0"
11 requires-python = ">=3.10"
12 authors = [{ name = "Dyber PQC" }]
13 keywords = ["pqc", "credentials", "vault", "ml-kem", "ml-dsa", "langchain", "autogen", "crewai", "agents"]
14 classifiers = [
15 "Development Status :: 4 - Beta",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: Apache Software License",
18 "Programming Language :: Python :: 3",
19 "Programming Language :: Python :: 3.10",
20 "Programming Language :: Python :: 3.11",
21 "Programming Language :: Python :: 3.12",
22 "Topic :: Security :: Cryptography",
23 ]
24 dependencies = [
25 "quantumshield>=0.1.0",
26 "cryptography>=41.0",
27 ]
28
29 [project.optional-dependencies]
30 langchain = ["langchain-core>=0.1"]
31 dev = ["pytest", "ruff", "mypy"]
32
33 [tool.hatch.build.targets.wheel]
34 packages = ["src/pqc_agent_wallet"]
35
36 [tool.hatch.build.targets.sdist]
37 include = ["src/", "tests/", "examples/", "README.md", "LICENSE", "pyproject.toml"]
38
39 [tool.pytest.ini_options]
40 testpaths = ["tests"]
41