forked from apache/mahout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 744 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 744 Bytes
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
[project]
name = "qumat"
version = "0.4"
description = "A library for composing quantum machine learning."
authors = [{ name = "Apache Mahout", email = "dev@mahout.apache.org" }]
license = "Apache-2.0"
requires-python = ">=3.10,<3.11"
readme = "README.md"
dependencies = [
"qiskit>=2.2.0,<3.0.0",
"qiskit-aer>=0.17.2,<0.18.0",
"cirq>=1.5.0,<1.6.0",
"amazon-braket-sdk>=1.102.6,<2.0",
"sympy>=1.14.0,<2.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.1.1", "ruff>=0.13.1", "pre-commit>=3.0.0"]
[tool.pytest.ini_options]
testpaths = ["testing"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = ["-v", "--tb=short"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"