-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
58 lines (51 loc) · 1.5 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
[build-system]
requires = ["poetry", "poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "qermit"
version = "0.7.0"
description = "Python package for quantum error mitigation."
authors = [
"Daniel Mills <[email protected]>",
"Silas Dilkes <[email protected]>",
"Cristina Cirstoiu <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
pytket-qiskit = "^0.60.0"
matplotlib = "^3.8.3"
pytest = { version = "^8.1.1", optional = true }
mypy = { version = "^1.9.0", optional = true }
sphinx = { version = "^8.1.3", optional = true }
pytest-cov = { version = "^6.0.0", optional = true }
qiskit-ibm-provider = { version = "^0.11.0", optional = true }
ruff = { version = "^0.8.1", optional = true }
pytket-quantinuum = {extras = ["pecos"], version = ">=0.41,<0.43", optional = true}
furo = { version = "^2024.8.6", optional = true }
myst-nb = { version = "^1.1.2", optional = true}
sphinx-autodoc-typehints = { version = "^2.5.0", optional = true }
jupyter-sphinx = { version = "^0.5.3", optional = true}
[tool.poetry.extras]
tests = [
"pytest",
"mypy",
"ruff",
"pytest-cov",
"qiskit-ibm-provider",
"pytket-quantinuum",
]
docs = [
"sphinx",
"furo",
"pytket-quantinuum",
"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"]