forked from iqm-finland/iqm-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
142 lines (126 loc) · 3.32 KB
/
pyproject.toml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
[build-system]
requires = [
"setuptools>=70.0.0",
"setuptools_scm[toml]>=8.1.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "iqm-benchmarks"
dynamic = ["version"]
description = "A package for implementation of Quantum Characterization, Verification and Validation (QCVV) techniques on IQM's hardware at gate level abstraction"
authors = [
{name="IQM Finland Oy", email="[email protected]"},
{name="Aniket Rath", email="[email protected]"},
{name="Jami Rönkkö", email="[email protected]"},
{name="Pedro Figueroa Romero", email="[email protected]"},
{name="Vicente Pina Canelles", email="[email protected]"},
{name="Raphael Brieger", email="[email protected]"},
{name="Stefan Seegerer", email="[email protected]"}
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.11"
dependencies = [
"lmfit >= 1.2",
"matplotlib >= 3.6.3, < 4",
"more-itertools >= 10.1.0, < 11.0.0",
"mthree >= 2.6, < 2.7",
"networkx>=3.3, < 4.0",
"numpy >= 1.25.2, < 2.0",
"qiskit >= 1.0, < 2.0",
"qiskit-iqm >= 15.1, < 16.0",
"scikit-optimize >= 0.10.2, < 0.11.0",
"tabulate >= 0.9.0, <1.0.0",
"uncertainties >= 3.2.2, < 3.3.0",
"pycurl >= 7.45.3, < 8.0",
"xarray >= 2024.6.0, < 2025.0.0",
"types-pycurl",
"myst-nb == 1.1.0",
]
[project.urls]
"Homepage" = "https://github.com/iqm-finland/iqm-benchmarks"
[project.optional-dependencies]
develop = [
"tox == 4.16.0",
]
examples = [
"notebook == 7.2.1"
]
mgst = [
"numpy < 2.0",
"cvxpy == 1.5.3",
"pygsti == 0.9.12.3",
"tqdm == 4.66.5",
"numba == 0.60.0",
]
test = [
"black == 24.4.2",
"isort == 5.13.2",
"mypy == 1.10.1",
"pylint == 3.2.5",
"pytest == 7.4.4",
"pytest-cov == 4.1.0",
"pytest-isort == 3.1.0",
"pytest-mypy == 0.10.3",
"pytest-pylint == 0.21.0",
]
docs = [
"sphinx == 7.2.6",
"sphinx-book-theme == 1.1.2",
"myst-parser >= 4.0.0, < 5",
]
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ["py311"]
[tool.isort]
balanced_wrapping = true
force_sort_within_sections = true
group_by_package = true
known_first_party = ["iqm"]
line_length = 120
lines_after_imports = 2
order_by_type = true
profile = "black"
reverse_relative = true
use_parentheses = true
[tool.mypy]
ignore_missing_imports = true
namespace_packages = true
[tool.pylint.design]
max-args = 8
[tool.pylint.format]
max-line-length = 120
[tool.pylint.main]
disable = [
"abstract-method",
"bare-except",
"cyclic-import",
"duplicate-code",
"f-string-without-interpolation",
"invalid-name",
"logging-fstring-interpolation",
"logging-not-lazy",
"line-too-long",
"relative-beyond-top-level",
"too-few-public-methods",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-locals",
"ungrouped-imports",
"unnecessary-lambda",
"unnecessary-lambda-assignment",
]
[tool.pylint.similarities]
ignore-imports = true
min-similarity-lines = 10
[tool.pylint.string]
check-quote-consistency = true
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
write_to = "version.txt"