forked from qua-platform/py-qua-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.62 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
[tool.poetry]
name = "qualang-tools"
version = "v0.11.2"
description = "The qualang_tools package includes various tools related to QUA programs in Python"
license = "BSD-3-Clause"
authors = [
"QM <[email protected]>",
]
packages = [
{ include = "qualang_tools" }
]
include = [
]
exclude = [
"**/tests/**",
]
readme = "README.md"
homepage = "https://github.com/qua-platform/py-qua-tools"
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
matplotlib = "^3.4.2"
numpy = "^1.17.0"
pandas = "^1.2.4"
qm-qua = "^0.3.7"
scipy = "^1.7.1"
dash = "^2.0.0"
dash-html-components = "^2.0.0"
dash-core-components = "^2.0.0"
dash-bootstrap-components = "^1.0.0"
dash-cytoscape = "^0.3.0"
dash-table = "^5.0.0"
docutils = ">=0.14.0"
dash-dangerously-set-inner-html = "^0.0.2"
waitress = "^2.0.0"
dill = { version = "^0.3.4", optional = true }
pypiwin32 = { version = "^223", optional = true }
ipython = { version = "^7.31.1", optional = true }
scikit-learn = "^1.0.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.3"
poethepoet = "^0.11.0"
flake8 = "^4.0.1"
[tool.poetry.extras]
interplot = ["dill", "pypiwin32", "ipython"]
[tool.black]
line-length = 88 # Defaults
exclude = "qualang_tools/bakery/randomized_benchmark_c1.py"
[tool.poe.tasks]
format = "black qualang_tools"
check-format = "black --check qualang_tools"
lint = "flake8 qualang_tools"
test = "pytest tests"
test_server = "pytest tests_against_server"
[tool.poe.tasks.check]
sequence = ["check-format", "lint", "test"]
help = "Perform all check possible on the code"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"