forked from entropy-lab/entropy-qpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.45 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
[tool.poetry]
name = "entropylab-qpudb"
version = "0.0.14"
description = "A extension of entropy lab for persistent storage of calibration parameters of a quantum processing unit (QPU)."
authors = [
"Lior Ella <lior@quantum-machines.co>",
"Guy Kerem <guy@quantum-machines.co>",
"Tal Shani <tal@quantum-machines.co>",
]
license = "BSD-3-Clause"
packages = [{ include = "entropylab_qpudb" }]
include = ["CHANGELOG.md", "LICENSE"]
exclude = ["**/tests/**"]
readme = "README.md"
homepage = "https://github.com/entropy-lab/entropy-qpu"
[tool.poetry.dependencies]
python = "^3.9"
zodb = "^6.0"
pandas = "^2.2.2"
entropylab = { git = "https://github.com/PainterQubits/entropylab" }
tqdm = "^4.66.4"
paramdb = "^0.15.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
poethepoet = "^0.26.1"
pytest = "^8.2.1"
flake8 = "^7.0.0"
flake8-bugbear = "^24.4.26"
pytest-cov = "^5.0.0"
[tool.poe.tasks.format]
cmd = "black entropylab_qpudb"
help = "Format source files according to the style rules"
[tool.poe.tasks.check-format]
cmd = "black entropylab_qpudb --check"
help = "Check that all files are formatted according to the style rules"
[tool.poe.tasks.lint]
cmd = "flake8 entropylab_qpudb"
help = "Check for lint errors"
[tool.poe.tasks.test]
cmd = "pytest"
help = "Run all unit tests"
[tool.poe.tasks]
check = ["check-format", "lint", "test"]
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"