-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
113 lines (96 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[tool.poetry]
name = "pytket-aqt"
version = "0.36.0"
description = "Extension for pytket, providing access to AQT backends"
authors = ["TKET development team <[email protected]>"]
license = "Apache 2"
readme = "README.md"
packages = [{include = "pytket"}]
repository = "https://github.com/CQCL/pytket-aqt"
documentation = "https://cqcl.github.io/pytket-aqt/api/index.html"
classifiers= [
"Environment :: Console",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/CQCL/pytket-aqt/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pytket = "^1.35"
requests = "^2.22"
types-requests = "*"
pydantic = "^2.0"
networkx = "^3.0"
sympy = ">=1.6"
qiskit-aqt-provider = "~1.8.1"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "*"
pytest-timeout = ">=1.4.2,<3.0.0"
hypothesis = "*"
requests_mock = "*"
numpy = "*"
qiskit-aqt-provider = {version = "~1.8.1", extras = ["test"]}
[tool.poetry.group.mypy]
optional = true
[tool.poetry.group.mypy.dependencies]
mypy = "^1.0"
[tool.poetry.group.coverage]
optional = true
[tool.poetry.group.coverage.dependencies]
coverage = {extras = ["toml"], version = ">=6.1,<8.0"}
[tool.poetry.group.pre-commit]
optional = true
[tool.poetry.group.pre-commit.dependencies]
black = ">=22.3"
pylint = ">=2.13,<4.0"
pre-commit = ">=2.15,<5.0"
pyupgrade = ">=2.29,<4.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=4.3.2,<8.0.0"
sphinx_book_theme = ">= 1.0.1, < 2.0"
sphinx-copybutton = "*"
docutils = "*"
types-docutils = "*"
[tool.poetry.group.jupyter]
optional = true
[tool.poetry.group.jupyter.dependencies]
jupyter = "^1.0.0"
ipykernel = "^6.29.5"
[tool.mypy]
warn_unused_configs = true
disallow_untyped_decorators = false
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
strict_optional = true
namespace_packages = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = false
warn_return_any = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = [
'mypy-pytest.*',
'mypy-lark.*'
]
ignore_missing_imports = true
ignore_errors = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"