forked from qua-platform/qua-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 908 Bytes
/
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
[tool.poetry]
name = "qua-libs"
version = "0.0.0"
description = "A collection of examples to be used with QUA language"
authors = ["Quantum Machines <[email protected]>"]
license = "BSD-3-Clause"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
qm-qua = {version = ">=1.2.0", allow-prereleases = true}
[tool.poetry.dev-dependencies]
black = "^24.3.0"
poethepoet = "^0.10.0"
flake8 = "^3.9.1"
[tool.black]
line-length = 120
#force-exclude = '''Two-Flux-Tunable-Transmons/Use Case 4 - Single- and Two-Qubit State and Process Tomography/helper_functions.py'''
#include = '(examples)/.+\.pyi?$'
#include = '(Quantum Control Applications)/.+\.pyi?$'
#include = '(Tutorials)/.+\.pyi?$'
[tool.poe.tasks]
format="black examples"
check_format="black --check ."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"