forked from qua-platform/py-qua-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.29 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
[tool.poetry]
name = "qualang-tools"
version = "v0.4.0-alpha1"
description = "The qualang_tools package includes tools for writing 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,<3.10"
matplotlib = "^3.4.2"
numpy = "^1.20.3"
pandas = "^1.2.4"
qm-qua = "^0.3.2"
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.18.1"
dash-dangerously-set-inner-html = "^0.0.2"
waitress = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.5b2"
poethepoet = "^0.11.0"
flake8 = "^4.0.1"
[tool.poe.tasks]
format = "black qualang_tools tests"
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"