Skip to content

Commit

Permalink
Create PyPi package.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlyongemallo committed Apr 7, 2024
1 parent d7a6194 commit fa708c3
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[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 = "dlyongemallo@users.noreply.github.com" },
]
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"]

0 comments on commit fa708c3

Please sign in to comment.