-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.79 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
60
61
62
63
64
65
66
[project]
name = "pytket-qiskit"
dynamic = ["version"]
requires-python = ">=3.11,<4.0"
description = "Extension for pytket, providing translation to and from the Qiskit."
license = { file = "LICENSE" }
readme = "README.md"
authors = [
{ name = "TKET development team", email = "tket-support@quantinuum.com" }
]
maintainers = [
{ name = "TKET development team", email = "tket-support@quantinuum.com" },
]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pytket >= 2.11.0",
"qiskit >= 2.3",
"qiskit-ibm-runtime >= 0.43.1",
"numpy >= 1.26.4",
"symengine >= 0.11",
]
[project.optional-dependencies]
aer = ["qiskit-aer >= 0.17.1"]
[dependency-groups]
dev = [
"pytest >=8.3.2,<9",
"pytest-timeout ~=2.4.0",
"ruff >=0.6.2,<0.7",
"mypy >=1.11.1,<2",
"hypothesis >=6.111.1,<7",
"pre-commit >=3.8.0,<4",
"pyupgrade >=2.29,<4.0",
"requests_mock",
"pytest-rerunfailures",
]
[project.urls]
documentation = "https://tket.quantinuum.com/extensions/pytket-qiskit/index.html"
source = "https://github.com/Quantinuum/pytket-qiskit"
tracker = "https://github.com/Quantinuum/pytket-qiskit/issues"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "pytket.extensions.qiskit._metadata.__extension_version__"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"