diff --git a/MANIFEST.in b/MANIFEST.in index d411667e..8e56bb5f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,5 @@ include pyzx/js/zx_editor_widget.js include pyzx/js/zx_viewer.js include pyzx/js/d3.v5.min.js include pyzx/js/zx_viewer.inline.js +include readme.md +include LICENSE \ No newline at end of file diff --git a/doc/conf.py b/doc/conf.py index 056aebcd..83d017e7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -30,9 +30,9 @@ author = 'Aleks Kissinger and John van de Wetering' # The short X.Y version -version = '0.7.2' +version = '0.7.3' # The full version, including alpha/beta/rc tags -release = '0.7.2' +release = '0.7.3' # -- General configuration --------------------------------------------------- diff --git a/pyzx/__init__.py b/pyzx/__init__.py index 7b0fb0e8..6d49dc4a 100644 --- a/pyzx/__init__.py +++ b/pyzx/__init__.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.7.2" +__version__ = "0.7.3" from .graph.graph import Graph from .circuit import Circuit, gates, id diff --git a/setup.py b/setup.py index 3e73c89d..9fa41068 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ name="pyzx", author="Quantomatic", author_email="john@vdwetering.name", - version="0.7.2", + version="0.7.3", url="https://github.com/Quantomatic/pyzx.git", description="Library for quantum circuit rewriting and optimisation using the ZX-calculus", long_description=README,