-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup and manifest for PyPI distribution
- Loading branch information
1 parent
c3c36e8
commit 52de1b1
Showing
4 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
notebooks/.ipynb_checkpoints | ||
doc/_build | ||
build | ||
dist | ||
pyzx.egg-info | ||
*.pyc | ||
.vscode | ||
*.class | ||
*.ipynb_checkpoints | ||
*.ipynb_checkpoints | ||
pyzx/js/d3.v5.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include pyzx/js/zx_editor_model.js | ||
include pyzx/js/zx_editor_widget.js | ||
include pyzx/js/zx_viewer.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,35 @@ | ||
#!/usr/bin/python | ||
|
||
import pathlib | ||
from setuptools import setup | ||
|
||
HERE = pathlib.Path(__file__).parent | ||
README = (HERE / "readme.md").read_text() | ||
|
||
setup( | ||
name="pyzx", | ||
author="Quantomatic", | ||
author_email="[email protected]", | ||
version="0.5.0", | ||
url="https://github.com/Quantomatic/pyzx.git", | ||
description="Python library for quantum circuit rewriting and optimisation using the ZX-calculus", | ||
description="Library for quantum circuit rewriting and optimisation using the ZX-calculus", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
license="GNUv3", | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Development Status :: 4 - Beta", | ||
], | ||
packages=[ | ||
"pyzx", | ||
"pyzx.circuit", | ||
"pyzx.graph", | ||
"pyzx.routing", | ||
"pyzx.scripts" | ||
], | ||
install_requires=[ | ||
"numpy >= 1.14", | ||
"matplotlib >= 2.2", | ||
], | ||
install_requires=["numpy>=1.12"], | ||
include_package_data=True, | ||
) |