Skip to content

Commit

Permalink
Merge pull request #34 from dlyongemallo/pypi_package
Browse files Browse the repository at this point in the history
Create PyPi package.
  • Loading branch information
dlyongemallo authored Apr 7, 2024
2 parents 6cf024f + fa708c3 commit 68f1ba9
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
.idea
.ipynb_checkpoints
.venv
.vs
.vscode
__pycache__
# Virtual environments
.venv/

# IDE configs
.idea/
.vs/
.vscode/

# Jupyter Notebook
.ipynb_checkpoints/

# Byte-compiled / optimized / DLL files
__pycache__/

# Distribution / packaging
dist/
*.egg-info/

# Submodules
benchmarking/QASMBench
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 68f1ba9

Please sign in to comment.