-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.08 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
[project]
name = "mqss-qir-qiskit"
version = "0.1.0"
description = "Tool to convert QIR to a Qiskit QuantumCircuit object"
authors = [
{name = "mqss", email = "mqss@munich-quantum-valley.de"},
]
keywords = ["MQSS", "quantum-computing", "Qiskit", "qir"]
dependencies = [
"pyqir>=0.8.0",
"llvmlite>=0.40.1",
"qiskit >=0.45,<2.0.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "Apache-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",
"mqt.qcec",
"qiskit_qir"
]