-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (65 loc) · 2.22 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rivet-transpiler"
description = "Rivet Transpiler provides a family of functions for efficient transpilation of quantum circuits."
readme = "README.md"
authors = [{ name = "Haiqu Inc.", email = "info@haiqu.ai" }]
license = { file = "LICENSE" }
version = "1.0.13"
requires-python = ">= 3.10"
dependencies = [
"qiskit <= 1.2.4",
"qiskit_ibm_runtime <= 0.32.0",
"rustworkx >= 0.14.2"
]
keywords = [
"rivet",
"transpile",
"transpiler",
"quantum",
"quantum circuit",
"quantum computing",
"quantum programming language",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/haiqu-ai/rivet"
[project.optional-dependencies]
bqskit = ["bqskit <= 1.1.2"]
pytket = ["pytket <= 1.34.0",
"pytket-qiskit <= 0.58.0",
"qiskit-aer <= 0.15.1"]
testing = ["pytest >= 7.4.3",
"coverage >= 7.3.2",
"qiskit-aer <= 0.15.1"]
examples = ["jupyterlab",
"matplotlib",
"pickleshare",
"tqdm",
"qiskit-aer <= 0.15.1"]
stacks = ["rivet-transpiler[bqskit]",
"rivet-transpiler[pytket]"]
all = ["rivet-transpiler[stacks]",
"rivet-transpiler[testing]",
"rivet-transpiler[examples]"]
[tool.setuptools.packages.find]
include = ["rivet_transpiler"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"]