pyproject.toml
| 1 | [build-system] |
| 2 | requires = ["hatchling"] |
| 3 | build-backend = "hatchling.build" |
| 4 | |
| 5 | [project] |
| 6 | name = "pqc-mcp-transport" |
| 7 | version = "0.1.0" |
| 8 | description = "PQC-secured transport layer for Model Context Protocol (MCP). ML-DSA signed messages and agent identity verification." |
| 9 | readme = "README.md" |
| 10 | license = "Apache-2.0" |
| 11 | requires-python = ">=3.10" |
| 12 | authors = [{ name = "Dyber PQC" }] |
| 13 | dependencies = [ |
| 14 | "quantumshield>=0.1.0", |
| 15 | "httpx>=0.27", |
| 16 | ] |
| 17 | |
| 18 | [project.optional-dependencies] |
| 19 | dev = ["pytest", "pytest-asyncio", "ruff", "mypy"] |
| 20 | |
| 21 | [tool.pytest.ini_options] |
| 22 | asyncio_mode = "auto" |
| 23 | |