forked from qua-platform/py-qua-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 859 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
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "qualang-tools"
version = "v0.0.0"
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"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.5b2"
poethepoet = "^0.10.0"
[tool.poe.tasks]
format = "black ."
check_format = "black --check ."
test = "pytest"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"