pyproject.toml
| 1 | [build-system] |
| 2 | requires = ["hatchling"] |
| 3 | build-backend = "hatchling.build" |
| 4 | |
| 5 | [project] |
| 6 | name = "pqc-rag-signing" |
| 7 | version = "0.1.0" |
| 8 | description = "PQC-signed RAG pipeline chunks. Sign document chunks with ML-DSA at ingestion, verify at retrieval. Prevents vector database poisoning." |
| 9 | readme = "README.md" |
| 10 | license = "Apache-2.0" |
| 11 | requires-python = ">=3.10" |
| 12 | authors = [{ name = "Dyber PQC" }] |
| 13 | keywords = ["pqc", "rag", "ml-dsa", "post-quantum", "vector-database", "provenance"] |
| 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 | ] |
| 27 | |
| 28 | [project.optional-dependencies] |
| 29 | chroma = ["chromadb>=0.5"] |
| 30 | pinecone = ["pinecone-client>=3.0"] |
| 31 | qdrant = ["qdrant-client>=1.7"] |
| 32 | dev = ["pytest", "pytest-asyncio", "ruff", "mypy"] |
| 33 | |
| 34 | [tool.hatch.build.targets.wheel] |
| 35 | packages = ["src/pqc_rag_signing"] |
| 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 | asyncio_mode = "auto" |
| 43 | |