-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.55 KB
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
[build-system]
requires = ["poetry", "poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "qermit"
version = "0.9.3"
description = "Python package for quantum error mitigation."
authors = [
"Daniel Mills <daniel.mills@quantinuum.com>",
"Silas Dilkes <silas.dilkes@quantinuum.com>",
"Cristina Cirstoiu <cristina.cirstoiu@quantinuum.com>",
]
readme = "README.md"
[tool.setuptools.package-data]
"pkgname" = ["py.typed"]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
matplotlib = ">=3.8,<3.11"
pytket-qiskit = ">=0.73,<0.78"
pytket-quantinuum = { extras = ["pecos"], version = ">=0.41,<0.59"}
pytest = { version = ">=8.1,<9.1", optional = true }
mypy = { version = ">=1.9,<1.20", optional = true }
sphinx = { version = ">=8.1,<8.3", optional = true }
pytest-cov = { version = ">=6.0,<7.1", optional = true }
qiskit-ibm-provider = { version = ">=0.11,<0.12", optional = true }
ruff = { version = ">=0.8,<0.16", optional = true }
furo = { version = ">=2024.8,<2025.13", optional = true }
myst-nb = { version = ">=1.1,<1.5", optional = true }
sphinx-autodoc-typehints = { version = ">=2.5,<3.3", optional = true }
jupyter-sphinx = { version = ">=0.5,<0.6", optional = true}
[tool.poetry.extras]
tests = [
"pytest",
"mypy",
"ruff",
"pytest-cov",
"qiskit-ibm-provider",
]
docs = [
"sphinx",
"furo",
"myst-nb",
"sphinx-autodoc-typehints",
"jupyter-sphinx"
]
[tool.ruff]
exclude = ["docs/jupyter_execute/"]
[tool.ruff.lint]
select = ["I001"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]