-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 985 Bytes
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 985 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "mqss-benchmarking-framework"
version = "1.0.0"
description = "Automated and reproducible benchmarking framework for quantum computing workflows."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mqss-pennylane-adapter==1.1.2",
"mqss-qiskit>=0.2.0",
"mqt-bench>=2.0.0",
"pennylane>=0.41.1",
"qiskit-experiments>=0.5.0",
"scipy>=1.10.0",
"numpy>=1.24.0",
"qiskit-aer>=0.13.3",
"pyyaml>=6.0.3",
"colorama>=0.4.6",
"dacite>=1.9.2",
"pytest-cov>=7.0.0",
]
# for PyPy
[project.optional-dependencies]
dev = [
"ruff",
"pylint",
"pytest",
"pytest-cov"
]
# for uv
[tool.uv]
dev-dependencies = [
"ruff",
"pylint",
"pytest",
"pytest-cov",
]
[project.scripts]
mqssbench = "mqssbench.cli.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]