-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 1.06 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
[project]
name = "qiskit-leaky-scheduling"
version = "0.2.4"
description = "A transpilation plugin for Qiskit with a modified scheduling stage that encodes (classical) information modifying the angles of RZGates without leading to changes in the computation results"
authors = [
{name = "Iyán Méndez Veiga", email = "me@iyanmv.com"},
]
dependencies = [
"qiskit>=1.0,<2.5",
"qiskit-ibm-runtime>=0.25.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
qiskit_leaky_scheduling = ["*.png"]
[project.entry-points."qiskit.transpiler.scheduling"]
leaky_rotations = "qiskit_leaky_scheduling:LeakySchedulingPlugin"
[project.urls]
homepage = "https://github.com/iyanmv/qiskit-leaky-scheduling"
source = "https://github.com/iyanmv/qiskit-leaky-scheduling"
issues = "https://github.com/iyanmv/qiskit-leaky-scheduling/issues"
"arXiv Paper" = "https://arxiv.org/abs/2510.02251"