[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qml-mcp"
version = "0.1.0"
description = "Quantum Machine Learning MCP Server using Qiskit"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "des137"}
]
dependencies = [
"mcp>=0.9.0",
"qiskit>=1.0.0,<2.0.0",
"qiskit-machine-learning>=0.8.4",
"qiskit-algorithms>=0.3.0",
"qiskit-qasm3-import>=0.5.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"numpy>=1.24.0",
"joblib>=1.3.0",
"scikit-learn>=1.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.7.0",
"ruff>=0.0.285",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["qml_mcp*", "qml*", "tools*", "resources*", "prompts*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"