File size: 743 Bytes
183b2d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [project]
name = "q-route"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"qiskit>=1.0.0",
"qiskit-aer>=0.14.0",
"datasets>=2.18.0",
"huggingface-hub>=0.22.0",
"transformers>=4.40.0",
"peft>=0.10.0",
"torch>=2.2.0",
"accelerate>=0.28.0",
"gradio>=4.20.0",
"openai>=1.14.0",
"anthropic>=0.20.0",
"pandas>=2.2.0",
"tqdm>=4.66.0",
"python-dotenv>=1.0.0",
"pytest>=8.0.0",
"matplotlib>=3.11.1",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
|