-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.72 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "mqss-qiskit"
version = "0.2.0"
description = "MQSS adapter for Qiskit as an interface to MQP and HPCQC."
authors = [
{name = "mqss", email = "mqss@munich-quantum-valley.de"},
]
keywords = ["MQSS", "quantum-computing", "Qiskit"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"qiskit>=0.45",
"requests>=2.32.3",
"python-decouple>=3.8",
"qiskit-qasm3-import>=0.5.1",
"mqss-client>=0.2.0",
]
# Sub-Dependency SciPy 1.9 supports Python 3.8-3.11
requires-python = ">=3.9,<3.14"
readme = "README.md"
license = {text = "Apache-2.0"}
[project.optional-dependencies]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.2",
"mkdocstrings[python]>=0.26.1",
"mkdocs-autorefs>=1.2.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
src_paths = ["mqss", "test"]
known_first_party = ["mqss"]
[tool.pytest.ini_options]
testpaths = ["test"]
addopts = ["-v", "-s"]
markers = [
"backend: mark tests related to backend operations",
"job: mark tests that involve job submission",]
[tool.pdm.build]
includes = ["mqss"]
[dependency-groups]
dev = [
"nox>=2023.4.22",
"pytest>=8.2.2",
"mypy>=1.10.1",
"isort>=5.13.2",
"pre-commit>=3.5.0",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"ruff>=0.11.5",
"pytest-cov>=6.1.1",
"matplotlib",
"python-dotenv",
]