pyproject.toml
| 1 | [build-system] |
| 2 | requires = ["hatchling"] |
| 3 | build-backend = "hatchling.build" |
| 4 | |
| 5 | [project] |
| 6 | name = "pqc-reasoning-ledger" |
| 7 | version = "0.1.0" |
| 8 | description = "PQC-signed neurosymbolic reasoning ledger. Sign chain-of-thought steps in real time during AI inference. Produces legally defensible, quantum-safe reasoning trails for regulated industries." |
| 9 | readme = "README.md" |
| 10 | license = "Apache-2.0" |
| 11 | requires-python = ">=3.10" |
| 12 | authors = [{ name = "Dyber PQC" }] |
| 13 | keywords = ["pqc", "reasoning", "chain-of-thought", "neurosymbolic", "ml-dsa", "audit", "legal", "explainability"] |
| 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 | "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 21 | ] |
| 22 | dependencies = [ |
| 23 | "quantumshield>=0.1.0", |
| 24 | ] |
| 25 | |
| 26 | [project.optional-dependencies] |
| 27 | dev = ["pytest", "ruff", "mypy"] |
| 28 | |
| 29 | [tool.hatch.build.targets.wheel] |
| 30 | packages = ["src/pqc_reasoning_ledger"] |
| 31 | |
| 32 | [tool.pytest.ini_options] |
| 33 | testpaths = ["tests"] |
| 34 | |