| [build-system] |
| requires = ["setuptools>=68.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "qsvaps" |
| version = "0.1.0" |
| description = "Quantum Superposition Verification for Agent Plan Safety — Grover's search as a verification oracle for AI agent plans" |
| readme = "README.md" |
| requires-python = ">=3.10" |
| license = {text = "MIT"} |
| authors = [ |
| {name = "QSVAPS Research Team"} |
| ] |
| keywords = ["quantum", "ai-agents", "verification", "grover", "plan-safety", "qiskit", "agent-safety"] |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Intended Audience :: Science/Research", |
| "License :: OSI Approved :: MIT License", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Topic :: Scientific/Engineering :: Physics", |
| "Programming Language :: Python :: 3.10", |
| "Programming Language :: Python :: 3.11", |
| "Programming Language :: Python :: 3.12", |
| ] |
| dependencies = [ |
| "qiskit>=1.0.0", |
| "qiskit-aer>=0.13.0", |
| "numpy>=1.24.0", |
| "matplotlib>=3.7.0", |
| ] |
|
|
| [project.optional-dependencies] |
| llm = ["openai>=1.0.0"] |
| dev = ["pytest>=7.0", "pytest-cov"] |
|
|
| [project.urls] |
| Homepage = "https://github.com/vmore2/qsvaps" |
| Repository = "https://github.com/vmore2/qsvaps" |
| Issues = "https://github.com/vmore2/qsvaps/issues" |
|
|
| [tool.setuptools.packages.find] |
| include = ["qsvaps*"] |
|
|
| [tool.pytest.ini_options] |
| testpaths = ["tests"] |
|
|