-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.48 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "qiskit-zx-transpiler"
version = "0.0.1"
description = "A transpiler pass for Qiskit which uses ZX-Calculus for circuit optimization, implemented using PyZX."
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
readme = "README.md"
authors = [
{ name = "David Yonge-Mallo", email = "[email protected]" },
]
dependencies = [
"pyzx>=0.8.0",
]
keywords = [
"qiskit",
"zx-calculus",
"quantum circuit optimization",
"quantum computing",
]
classifiers = [
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/dlyongemallo/qiskit-zx-transpiler"
Repository = "https://github.com/dlyongemallo/qiskit-zx-transpiler"
Issues = "https://github.com/dlyongemallo/qiskit-zx-transpiler/issues"
[tool.setuptools.packages.find]
include = ["zxpass"]
[project.entry-points."qiskit.transpiler.optimization"]
zxpass = "zxpass.plugin:ZXPlugin"