-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 873 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 873 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
29
30
31
32
33
34
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends.build_meta"
[project]
name = "hamover"
version = "0.1.0"
description = "Continuous-time quantum search via Hamiltonian evolution"
requires-python = ">=3.10"
license = "Apache-2.0"
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.optional-dependencies]
simulation = ["qutip>=5.0"]
hardware = ["simuq", "dwave-ocean-sdk"]
ionq = ["simuq", "amazon-braket-sdk"]
quera = ["simuq", "bloqade"]
classiq = ["classiq"]
optimization = ["jax", "jaxlib", "qhdopt", "cyipopt"]
dev = ["pytest", "pytest-cov"]
all = ["hamover[simulation,hardware,classiq,optimization,dev]"]
[tool.setuptools.packages.find]
where = ["."]
include = ["hamover*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests that require longer or external backend runs",
]