-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
77 lines (65 loc) · 1.82 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
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "qibosoq"
version = "0.1.4"
description = "QIBO Server On Qick (qibosoq) is the server component of qibolab to be run on RFSoC boards"
authors = [
"Rodolfo Carobene <rodolfo.carobene@gmail.com>",
"Javier Serrano <javier.serrano@tii.ae>",
]
license = "Apache License 2.0"
readme = "README.md"
repository = "https://github.com/qiboteam/qibosoq/"
documentation = "https://qibo.science/qibosoq/stable/"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
packages = [{ include = "qibosoq", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
qick = ">=0.2.211, <=0.2.249"
numpy = "^1.26"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
ipython = "^8.12.0"
pudb = "^2024.1.1"
[tool.poetry.group.analysis]
optional = true
[tool.poetry.group.analysis.dependencies]
pylint = ">=2.16.0"
mypy = "^1.10.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
ipython = "^8.12.0"
sphinx = "^7.4.6"
furo = "^2023.3.27"
recommonmark = "^0.7.1"
sphinxcontrib-bibtex = "^2.5.0"
sphinx-markdown-tables = "^0.0.17"
nbsphinx = "^0.9.1"
sphinx-copybutton = "^0.5.1"
sphinx-last-updated-by-git = "^0.3.5"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = ">=7.2.2"
pytest-cov = "^4.0.0"
pytest-mock = ">=3.10.0"
[tool.poe.tasks]
test = "pytest"
lint = "pylint src --errors-only"
lint-warnings = "pylint src --exit-zero"
mypy = "mypy src/"
docs = "make -C doc html"
docs-clean = "make -C doc clean"
test-docs = "make -C doc doctest"
[tool.pytest.ini_options]
testpaths = ['tests/']
addopts = ['--cov=qibosoq', '--cov-report=xml', '--cov-report=html']
[[tool.mypy.overrides]]
module = "qick.*"
ignore_missing_imports = true