mqt-core


Namemqt-core JSON
Version 2.4.1 PyPI version JSON
download
home_pageNone
SummaryThe Backbone of the Munich Quantum Toolkit
upload_time2024-04-22 22:00:24
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2024 Chair for Design Automation, Technical University of Munich, Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords mqt quantum-computing design-automation decision-diagrams zx-calculus
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI](https://img.shields.io/pypi/v/mqt.core?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.core/)
![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-core/actions/workflows/ci.yml)
[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-core/actions/workflows/cd.yml)
[![Documentation](https://img.shields.io/readthedocs/mqt-core?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/core)
[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-core?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-core)

<p align="center">
  <a href="https://mqt.readthedocs.io">
   <picture>
     <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/mqt_light.png" width="60%">
     <img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/mqt_dark.png" width="60%">
   </picture>
  </a>
</p>

# MQT Core - The Backbone of the Munich Quantum Toolkit (MQT)

MQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit_ (_MQT_)](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
To this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.

<p align="center">
  <a href="https://mqt.readthedocs.io/projects/core">
  <img width=30% src="https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs" alt="Documentation" />
  </a>
</p>

If you have any questions, feel free to create a [discussion](https://github.com/cda-tum/mqt-core/discussions) or an [issue](https://github.com/cda-tum/mqt-core/issues) on [GitHub](https://github.com/cda-tum/mqt-core).

## Getting Started

`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.8 to 3.12.

```console
(.venv) $ pip install mqt.core
```

The following code gives an example on the usage:

```python3
from mqt.core import QuantumComputation

qc = QuantumComputation(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure(range(2), range(2))

print(qc)
```

**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**

## System Requirements

Building (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).
However, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.19.

MQT Core relies on some external dependencies:

- [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.
- [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).
- [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).
- [pybind/pybind11_json](https://github.com/pybind/pybind11_json): Using nlohmann::json with pybind11 (only used for creating the Python bindings).

CMake will automatically look for installed versions of these libraries. If it does not find them, they will be fetched automatically at configure time via the [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) module (check out the documentation for more information on how to customize this behavior).

It is recommended (although not required) to have [GraphViz](https://www.graphviz.org) installed for visualization purposes.

If you want to use the ZX library, it is recommended (although not strictly necessary) to have [GMP](https://gmplib.org/) installed in your system.

---

## Acknowledgements

The Munich Quantum Toolkit has been supported by the European
Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement
No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the
Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.

<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_dark.svg" width="28%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_light.svg" width="28%">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-bavaria.svg" width="16%">
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_dark.svg" width="24%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_light.svg" width="24%">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-mqv.svg" width="28%">
</picture>
</p>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mqt-core",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "MQT, quantum-computing, design-automation, decision-diagrams, zx-calculus",
    "author": null,
    "author_email": "Lukas Burgholzer <burgholzer@me.com>",
    "download_url": "https://files.pythonhosted.org/packages/7d/c2/ad003e176dcb213b7691bffaf8b165b855c639d50e85566495aac7dd4c43/mqt_core-2.4.1.tar.gz",
    "platform": null,
    "description": "[![PyPI](https://img.shields.io/pypi/v/mqt.core?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.core/)\n![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)\n[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-core/actions/workflows/ci.yml)\n[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-core/actions/workflows/cd.yml)\n[![Documentation](https://img.shields.io/readthedocs/mqt-core?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/core)\n[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-core?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-core)\n\n<p align=\"center\">\n  <a href=\"https://mqt.readthedocs.io\">\n   <picture>\n     <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/mqt_light.png\" width=\"60%\">\n     <img src=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/mqt_dark.png\" width=\"60%\">\n   </picture>\n  </a>\n</p>\n\n# MQT Core - The Backbone of the Munich Quantum Toolkit (MQT)\n\nMQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit_ (_MQT_)](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).\nTo this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.\n\n<p align=\"center\">\n  <a href=\"https://mqt.readthedocs.io/projects/core\">\n  <img width=30% src=\"https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs\" alt=\"Documentation\" />\n  </a>\n</p>\n\nIf you have any questions, feel free to create a [discussion](https://github.com/cda-tum/mqt-core/discussions) or an [issue](https://github.com/cda-tum/mqt-core/issues) on [GitHub](https://github.com/cda-tum/mqt-core).\n\n## Getting Started\n\n`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.8 to 3.12.\n\n```console\n(.venv) $ pip install mqt.core\n```\n\nThe following code gives an example on the usage:\n\n```python3\nfrom mqt.core import QuantumComputation\n\nqc = QuantumComputation(2, 2)\nqc.h(0)\nqc.cx(0, 1)\nqc.measure(range(2), range(2))\n\nprint(qc)\n```\n\n**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**\n\n## System Requirements\n\nBuilding (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).\nHowever, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.19.\n\nMQT Core relies on some external dependencies:\n\n- [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.\n- [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).\n- [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).\n- [pybind/pybind11_json](https://github.com/pybind/pybind11_json): Using nlohmann::json with pybind11 (only used for creating the Python bindings).\n\nCMake will automatically look for installed versions of these libraries. If it does not find them, they will be fetched automatically at configure time via the [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) module (check out the documentation for more information on how to customize this behavior).\n\nIt is recommended (although not required) to have [GraphViz](https://www.graphviz.org) installed for visualization purposes.\n\nIf you want to use the ZX library, it is recommended (although not strictly necessary) to have [GMP](https://gmplib.org/) installed in your system.\n\n---\n\n## Acknowledgements\n\nThe Munich Quantum Toolkit has been supported by the European\nResearch Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement\nNo. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the\nMunich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.\n\n<p align=\"center\">\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_dark.svg\" width=\"28%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/tum_light.svg\" width=\"28%\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-bavaria.svg\" width=\"16%\">\n</picture>\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_dark.svg\" width=\"24%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/erc_light.svg\" width=\"24%\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt-core/main/docs/_static/logo-mqv.svg\" width=\"28%\">\n</picture>\n</p>\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Chair for Design Automation, Technical University of Munich, Germany  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "The Backbone of the Munich Quantum Toolkit",
    "version": "2.4.1",
    "project_urls": {
        "Discussions": "https://github.com/cda-tum/mqt-core/discussions",
        "Documentation": "https://mqt.readthedocs.io/projects/core",
        "Homepage": "https://github.com/cda-tum/mqt-core",
        "Issues": "https://github.com/cda-tum/mqt-core/issues"
    },
    "split_keywords": [
        "mqt",
        " quantum-computing",
        " design-automation",
        " decision-diagrams",
        " zx-calculus"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e1a49fea0ed5c6af2c1b5afe960ec73d5011b640664607ad38ec3aa37cebda9",
                "md5": "1d3cfe82bd07bde2bb728494b3b6814b",
                "sha256": "85aeb3337d6f1c14ebfa57d03096f09582cdf3e9165ba528d8ed32c4fb17324a"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d3cfe82bd07bde2bb728494b3b6814b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 21234064,
            "upload_time": "2024-04-22T21:58:28",
            "upload_time_iso_8601": "2024-04-22T21:58:28.820144Z",
            "url": "https://files.pythonhosted.org/packages/8e/1a/49fea0ed5c6af2c1b5afe960ec73d5011b640664607ad38ec3aa37cebda9/mqt_core-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77c8a83f8d599be553c4799525864fccbde556ead8d2af01b90756bdde3b5a81",
                "md5": "9983c1b5040a15cb0ae31ac84653605e",
                "sha256": "91928da6d257cdddb306429adf464215a67843897967d98330489c6d0ad323a5"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9983c1b5040a15cb0ae31ac84653605e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 20850692,
            "upload_time": "2024-04-22T21:58:31",
            "upload_time_iso_8601": "2024-04-22T21:58:31.972292Z",
            "url": "https://files.pythonhosted.org/packages/77/c8/a83f8d599be553c4799525864fccbde556ead8d2af01b90756bdde3b5a81/mqt_core-2.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4140921aabab2cc46ca56ed24c313457ecdd8ec24fb6ceb58b9896c7f43109fc",
                "md5": "97121ed615a26997123da0a935364776",
                "sha256": "8f7032d60d951fa35feaf651d79cef6e458d6ae6e640f0badeae584b6d456b36"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97121ed615a26997123da0a935364776",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 44055348,
            "upload_time": "2024-04-22T21:58:34",
            "upload_time_iso_8601": "2024-04-22T21:58:34.601064Z",
            "url": "https://files.pythonhosted.org/packages/41/40/921aabab2cc46ca56ed24c313457ecdd8ec24fb6ceb58b9896c7f43109fc/mqt_core-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d6e25a25fb2c3656e25c77fd67504104984379fd5aec7cd83dc5f0b157edb25",
                "md5": "9aaf41a49446142902974eacac88e78a",
                "sha256": "103bba98778383a8abcb799c8112db1c007668f82894a1d1e62d265e4323df52"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9aaf41a49446142902974eacac88e78a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 44932553,
            "upload_time": "2024-04-22T21:58:38",
            "upload_time_iso_8601": "2024-04-22T21:58:38.427693Z",
            "url": "https://files.pythonhosted.org/packages/2d/6e/25a25fb2c3656e25c77fd67504104984379fd5aec7cd83dc5f0b157edb25/mqt_core-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "956a5b0b0c0f72472593dee3aa743df2965be62250781ea5a4854bf3bd9bccce",
                "md5": "e866594241d3ddce5c0e5f423fd4a940",
                "sha256": "fcb61460f668f9a195f9a4ab17f86ab216c20d023fb2e0144468fd173d43be5d"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e866594241d3ddce5c0e5f423fd4a940",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 48700598,
            "upload_time": "2024-04-22T21:58:43",
            "upload_time_iso_8601": "2024-04-22T21:58:43.018451Z",
            "url": "https://files.pythonhosted.org/packages/95/6a/5b0b0c0f72472593dee3aa743df2965be62250781ea5a4854bf3bd9bccce/mqt_core-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de95ef80d34b014fabb2a5b06be42653e5217123139a46a7ac680b229f842c21",
                "md5": "6d8c754d721c2f11821158fa6d005b27",
                "sha256": "bb13e264e5f7cad8cb160a24998feb42c23fbff3b6f41a955d6177abe6fb2838"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d8c754d721c2f11821158fa6d005b27",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 44152975,
            "upload_time": "2024-04-22T21:58:46",
            "upload_time_iso_8601": "2024-04-22T21:58:46.246622Z",
            "url": "https://files.pythonhosted.org/packages/de/95/ef80d34b014fabb2a5b06be42653e5217123139a46a7ac680b229f842c21/mqt_core-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef600aebcd35c6a081e1130cb6b1c7371302e6d7166cd081c7e13eca76227dc4",
                "md5": "cefb15c8929fc3e4be8ffb5ae73d8618",
                "sha256": "f824c77aa3e9e214bd2fc731902b00736eb61113997f392f04e95145b493e902"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cefb15c8929fc3e4be8ffb5ae73d8618",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 10339762,
            "upload_time": "2024-04-22T21:58:49",
            "upload_time_iso_8601": "2024-04-22T21:58:49.015294Z",
            "url": "https://files.pythonhosted.org/packages/ef/60/0aebcd35c6a081e1130cb6b1c7371302e6d7166cd081c7e13eca76227dc4/mqt_core-2.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c8b98f5fdd2f944437147f5edd12cf5b3ba3b7c6ae3c6666e2dbb10e4ecb379",
                "md5": "8f2300cb7f7636d57a2dbcadae6866b5",
                "sha256": "a38e37d4bce0f8671a937c3c2def483dc990d532b5f2e8e6ef87daab3ce50cf3"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f2300cb7f7636d57a2dbcadae6866b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 21245861,
            "upload_time": "2024-04-22T21:58:51",
            "upload_time_iso_8601": "2024-04-22T21:58:51.501119Z",
            "url": "https://files.pythonhosted.org/packages/8c/8b/98f5fdd2f944437147f5edd12cf5b3ba3b7c6ae3c6666e2dbb10e4ecb379/mqt_core-2.4.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19b5877a300ca1f37a2b5f2b299a5d5eca2e9af358d4ac9d56f067ffe464a1b3",
                "md5": "2105f4b9cc96045bdf0ff5903c828b25",
                "sha256": "15135320cb0cb00ae0833e8413a6322e10160006fb7f216e3e8b15a38909d8e1"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2105f4b9cc96045bdf0ff5903c828b25",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 20855606,
            "upload_time": "2024-04-22T21:58:54",
            "upload_time_iso_8601": "2024-04-22T21:58:54.536130Z",
            "url": "https://files.pythonhosted.org/packages/19/b5/877a300ca1f37a2b5f2b299a5d5eca2e9af358d4ac9d56f067ffe464a1b3/mqt_core-2.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2575ee631cfbf280188c8843bcf724c4de8668aba106932e4212a5739043aa95",
                "md5": "763a0859710f8080390c3602bd1a3662",
                "sha256": "161fdaafe53b552297d773ad06b551f62d61111fdd1089d8d66fa674862e5e2f"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "763a0859710f8080390c3602bd1a3662",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 44084337,
            "upload_time": "2024-04-22T21:58:57",
            "upload_time_iso_8601": "2024-04-22T21:58:57.627378Z",
            "url": "https://files.pythonhosted.org/packages/25/75/ee631cfbf280188c8843bcf724c4de8668aba106932e4212a5739043aa95/mqt_core-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c425cc5c45d1c948278893dfdcfa2d5213d833e7ddb309001fb06312b92b180a",
                "md5": "0b15ebbb4cff5e1ccdaa3fb27833ba9f",
                "sha256": "875d37bd001452b74e1ffda0243ccb282a645177ee846eca222ec25f23e6f377"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0b15ebbb4cff5e1ccdaa3fb27833ba9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 44961958,
            "upload_time": "2024-04-22T21:59:01",
            "upload_time_iso_8601": "2024-04-22T21:59:01.232113Z",
            "url": "https://files.pythonhosted.org/packages/c4/25/cc5c45d1c948278893dfdcfa2d5213d833e7ddb309001fb06312b92b180a/mqt_core-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce753280008d3a454537b321a83f765e2f2d21cf8e8a69608268e859f5029f7f",
                "md5": "d23d86591003c1c691af07cd160f0aaa",
                "sha256": "201540e7285ce6bcd431b3018cf16cc643cf3fd12d01af257a7cde17aed0d1d4"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d23d86591003c1c691af07cd160f0aaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 48756605,
            "upload_time": "2024-04-22T21:59:05",
            "upload_time_iso_8601": "2024-04-22T21:59:05.095308Z",
            "url": "https://files.pythonhosted.org/packages/ce/75/3280008d3a454537b321a83f765e2f2d21cf8e8a69608268e859f5029f7f/mqt_core-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21cda4fde7a45d145a0fa130093829555d6625afa95f5b6edb9b9d37f27cb092",
                "md5": "5f7096608f34eaa2ddebcf9b1a98e4c7",
                "sha256": "6a26230b87288a03b3302702c9609f3bcc5c4b98941934f3c80c5e4793b43615"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f7096608f34eaa2ddebcf9b1a98e4c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 44182572,
            "upload_time": "2024-04-22T21:59:09",
            "upload_time_iso_8601": "2024-04-22T21:59:09.047301Z",
            "url": "https://files.pythonhosted.org/packages/21/cd/a4fde7a45d145a0fa130093829555d6625afa95f5b6edb9b9d37f27cb092/mqt_core-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0a02b249911a8c7273d63ab3bbc6297fcd64cf33c6972883abfd38ba81e56e0",
                "md5": "e92faa638fdcb1d92807ab3f7f3f547d",
                "sha256": "8db71daed4287675d5b19d90ddef629e6bf27143be9a68b15afeae3e440dc509"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e92faa638fdcb1d92807ab3f7f3f547d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 10343321,
            "upload_time": "2024-04-22T21:59:12",
            "upload_time_iso_8601": "2024-04-22T21:59:12.096698Z",
            "url": "https://files.pythonhosted.org/packages/b0/a0/2b249911a8c7273d63ab3bbc6297fcd64cf33c6972883abfd38ba81e56e0/mqt_core-2.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a69e9cd7e2b7c76b4010fcee3148d196a08d1316e27d1006611b4a07772cbc8b",
                "md5": "ea7e0acc24e909d92a4fd0fc75270a78",
                "sha256": "2e10532d6689375c3621c1ca87971d342e657f0cd629a1bb68ed1d5c956f57d0"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea7e0acc24e909d92a4fd0fc75270a78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 21279645,
            "upload_time": "2024-04-22T21:59:14",
            "upload_time_iso_8601": "2024-04-22T21:59:14.375892Z",
            "url": "https://files.pythonhosted.org/packages/a6/9e/9cd7e2b7c76b4010fcee3148d196a08d1316e27d1006611b4a07772cbc8b/mqt_core-2.4.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30ab1a03d6d59c4097399f96eb42fb911ca17e6a99ec65b63e4a50702563c815",
                "md5": "7871539fa3056a489a54f260d9f1e3d4",
                "sha256": "c6e60ff4659ea1f22664b70ba186379a80a42f103b09ca35f2317700d795b8dc"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7871539fa3056a489a54f260d9f1e3d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 20890342,
            "upload_time": "2024-04-22T21:59:17",
            "upload_time_iso_8601": "2024-04-22T21:59:17.205982Z",
            "url": "https://files.pythonhosted.org/packages/30/ab/1a03d6d59c4097399f96eb42fb911ca17e6a99ec65b63e4a50702563c815/mqt_core-2.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7dd49889fed6515c7360c83b27fdf52395bb69eab1b874a464a6cef4e181ef9",
                "md5": "d51b209b462f2988059fbe288f166b47",
                "sha256": "b6aa1fa65f9a6925397082850ca6f86e5528623e6254c711f49014656fb68367"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d51b209b462f2988059fbe288f166b47",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 44086802,
            "upload_time": "2024-04-22T21:59:19",
            "upload_time_iso_8601": "2024-04-22T21:59:19.979533Z",
            "url": "https://files.pythonhosted.org/packages/f7/dd/49889fed6515c7360c83b27fdf52395bb69eab1b874a464a6cef4e181ef9/mqt_core-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f215a93cd51ca33f6a9f66c136f2f96020d7d41f73515a973e62c3db4aec9b79",
                "md5": "f53c1b1675f3db3d5c8f8fe94977c08a",
                "sha256": "dd7ec82c29d1363d06ac29cdeeaf97615e296faf19c09ae70a2fe853b88c9833"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f53c1b1675f3db3d5c8f8fe94977c08a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 44965943,
            "upload_time": "2024-04-22T21:59:23",
            "upload_time_iso_8601": "2024-04-22T21:59:23.795044Z",
            "url": "https://files.pythonhosted.org/packages/f2/15/a93cd51ca33f6a9f66c136f2f96020d7d41f73515a973e62c3db4aec9b79/mqt_core-2.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8831df03d2a29fd49854fd3231cd5f32a702992fc800e543205ada63e0375942",
                "md5": "3884e3aae25930bec940f5019ffe5852",
                "sha256": "a6a8abe320240943c4f7729266d94d76dd4f04af73a7574c935f4515565154cc"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3884e3aae25930bec940f5019ffe5852",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 48749892,
            "upload_time": "2024-04-22T21:59:27",
            "upload_time_iso_8601": "2024-04-22T21:59:27.111418Z",
            "url": "https://files.pythonhosted.org/packages/88/31/df03d2a29fd49854fd3231cd5f32a702992fc800e543205ada63e0375942/mqt_core-2.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "551fb98681725e44fb085a69bc580b015c2b540f34ccbbcc9518220211abd2f9",
                "md5": "f9fb68887d31ea7937769787666b1560",
                "sha256": "63c7badd59c682c4cb620801b9d6c752d116a9aa54ec8ec273eccbfdb26c9cdc"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9fb68887d31ea7937769787666b1560",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 44190989,
            "upload_time": "2024-04-22T21:59:30",
            "upload_time_iso_8601": "2024-04-22T21:59:30.348519Z",
            "url": "https://files.pythonhosted.org/packages/55/1f/b98681725e44fb085a69bc580b015c2b540f34ccbbcc9518220211abd2f9/mqt_core-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b81acd5648a3eaf1e7011330a50c36082188377d9ad81b0c95782d52aba47ea5",
                "md5": "34c3d594226daa0bde86d3808c7bdf22",
                "sha256": "af853e1f67d0e7bdca4fac8e46e28ac1115ee04f16632b14efb807d1a7fee90b"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "34c3d594226daa0bde86d3808c7bdf22",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 10343596,
            "upload_time": "2024-04-22T21:59:33",
            "upload_time_iso_8601": "2024-04-22T21:59:33.860602Z",
            "url": "https://files.pythonhosted.org/packages/b8/1a/cd5648a3eaf1e7011330a50c36082188377d9ad81b0c95782d52aba47ea5/mqt_core-2.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8e6dae6b926303796c87652d686779a3164a3e920186b3275c78311d797412d",
                "md5": "6a5756b93da612bd7cfb6c95ab2c2a3b",
                "sha256": "751d20dd6b4d26254328cbe4cfdc6eb99dd2063c1fd7812f5f4c18ae9f6482b9"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a5756b93da612bd7cfb6c95ab2c2a3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 21234014,
            "upload_time": "2024-04-22T21:59:36",
            "upload_time_iso_8601": "2024-04-22T21:59:36.369000Z",
            "url": "https://files.pythonhosted.org/packages/f8/e6/dae6b926303796c87652d686779a3164a3e920186b3275c78311d797412d/mqt_core-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e33a9d57fdaa63daf47af2c86250e18e8ec272724fdac2548850aad477ab4f20",
                "md5": "5fce339500eb4a48d0868eccd60eacf5",
                "sha256": "36a982efaadecbff770b561c6f8ecf5977f580cf5b00e06afdcb53e6f6c51132"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5fce339500eb4a48d0868eccd60eacf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 20850563,
            "upload_time": "2024-04-22T21:59:39",
            "upload_time_iso_8601": "2024-04-22T21:59:39.276913Z",
            "url": "https://files.pythonhosted.org/packages/e3/3a/9d57fdaa63daf47af2c86250e18e8ec272724fdac2548850aad477ab4f20/mqt_core-2.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fa50dc6f6f193edc289a9060a595745faad2e98997b50201fe0ba9aa76584c2",
                "md5": "e14e6f8b0d465a1f808085f9dd8975f4",
                "sha256": "2b10ff2e997af129ce1555aa8f44c49da700bdb3ea78e41afa69a89ffbc72fc8"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e14e6f8b0d465a1f808085f9dd8975f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 44055575,
            "upload_time": "2024-04-22T21:59:41",
            "upload_time_iso_8601": "2024-04-22T21:59:41.807059Z",
            "url": "https://files.pythonhosted.org/packages/8f/a5/0dc6f6f193edc289a9060a595745faad2e98997b50201fe0ba9aa76584c2/mqt_core-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3fcb3aa35114da5078b64ba908e332f450466c2d0a9b580d8feaa0a9aeb5904",
                "md5": "ff6d53f26c063e304dc9910cc90817c9",
                "sha256": "67956ee77b43f38b85bd357167eb1fba5248cd62c236e32c921e2720ef86ee1b"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ff6d53f26c063e304dc9910cc90817c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 44934177,
            "upload_time": "2024-04-22T21:59:45",
            "upload_time_iso_8601": "2024-04-22T21:59:45.280157Z",
            "url": "https://files.pythonhosted.org/packages/e3/fc/b3aa35114da5078b64ba908e332f450466c2d0a9b580d8feaa0a9aeb5904/mqt_core-2.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70b0b7719f5cf3d7a9637517822ef60f5db4edc262152d63f8e81d7efe7832ad",
                "md5": "591a9966524e9e9d5b63fb11b54bb88b",
                "sha256": "ad660efac16936aa7cc85c709220aa6f09d6a5c4e1e653ea0b79f8b9800c64f9"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "591a9966524e9e9d5b63fb11b54bb88b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 48719871,
            "upload_time": "2024-04-22T21:59:48",
            "upload_time_iso_8601": "2024-04-22T21:59:48.518547Z",
            "url": "https://files.pythonhosted.org/packages/70/b0/b7719f5cf3d7a9637517822ef60f5db4edc262152d63f8e81d7efe7832ad/mqt_core-2.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94d22a0f699c0bdfb6276c1f0dc1a7ce66bffbfb35713b8bc58664f49ac4608f",
                "md5": "32458937caa411c3f48bac6025856686",
                "sha256": "429d4afa9fc77322b4a73a62ac7c1dedcc6a9a2315cf44344f71dab41bc445a5"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32458937caa411c3f48bac6025856686",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 44155029,
            "upload_time": "2024-04-22T21:59:51",
            "upload_time_iso_8601": "2024-04-22T21:59:51.924381Z",
            "url": "https://files.pythonhosted.org/packages/94/d2/2a0f699c0bdfb6276c1f0dc1a7ce66bffbfb35713b8bc58664f49ac4608f/mqt_core-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8374116213b0e8df0f90820410e426b89e2d78d37b72e133cb467bca9fe2aa74",
                "md5": "e7d9e3c3a81eec1dbee17b593fc4319e",
                "sha256": "6b41cddc71da9dedc3d0e072ddeea8a4ca79268dcfe7928bdcfa546886332648"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e7d9e3c3a81eec1dbee17b593fc4319e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 10354093,
            "upload_time": "2024-04-22T21:59:55",
            "upload_time_iso_8601": "2024-04-22T21:59:55.604104Z",
            "url": "https://files.pythonhosted.org/packages/83/74/116213b0e8df0f90820410e426b89e2d78d37b72e133cb467bca9fe2aa74/mqt_core-2.4.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd4ecc960af60c9f038965760fe50449beb6712aefb407323e2c491ca53f730f",
                "md5": "b1efd5f33963343b19c00c3cab845923",
                "sha256": "d49ddacbc3b097f0776c799ad2f7c304764f387d5a2a62da3575c011c6a9c312"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1efd5f33963343b19c00c3cab845923",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 21233309,
            "upload_time": "2024-04-22T21:59:58",
            "upload_time_iso_8601": "2024-04-22T21:59:58.527599Z",
            "url": "https://files.pythonhosted.org/packages/bd/4e/cc960af60c9f038965760fe50449beb6712aefb407323e2c491ca53f730f/mqt_core-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9ad89b0554fdf06c20150f189ce006f1d3d0b1feb325c81bfc08579bfb25b13",
                "md5": "943ab71b487b1d9a842f2bf1080ab90e",
                "sha256": "c245f66f6e44f7eeb7da3d1257c7b2a62334e8721eafae5225d6c1f3b8f417b7"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "943ab71b487b1d9a842f2bf1080ab90e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 20850960,
            "upload_time": "2024-04-22T22:00:01",
            "upload_time_iso_8601": "2024-04-22T22:00:01.890089Z",
            "url": "https://files.pythonhosted.org/packages/e9/ad/89b0554fdf06c20150f189ce006f1d3d0b1feb325c81bfc08579bfb25b13/mqt_core-2.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5b0d90bd1698a15f60c83a86858d505f2b1e39c04f9b31fabe227692a6daded",
                "md5": "20b51905f28e9e694bf33a6b82c33e61",
                "sha256": "414053f64687cf3c771ec79fac5bc15cd23b74dacf19761fe49115c0ac3e4dff"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20b51905f28e9e694bf33a6b82c33e61",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 44054885,
            "upload_time": "2024-04-22T22:00:05",
            "upload_time_iso_8601": "2024-04-22T22:00:05.635461Z",
            "url": "https://files.pythonhosted.org/packages/d5/b0/d90bd1698a15f60c83a86858d505f2b1e39c04f9b31fabe227692a6daded/mqt_core-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48454cb0585ae2fe62f0b9a81d717c2a59275cc93d0a5a4164807675fa9742f5",
                "md5": "067e78303d75b81b6f6a2ddde340a4cc",
                "sha256": "5bf9473841c748622ea3bfe225d499795abe55e0dde31e3a6bd188a9f2b65dc0"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "067e78303d75b81b6f6a2ddde340a4cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 44933132,
            "upload_time": "2024-04-22T22:00:09",
            "upload_time_iso_8601": "2024-04-22T22:00:09.839414Z",
            "url": "https://files.pythonhosted.org/packages/48/45/4cb0585ae2fe62f0b9a81d717c2a59275cc93d0a5a4164807675fa9742f5/mqt_core-2.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a22a784b741f65800b2f7fe9a17215df3ba928e477fac4b6759bf6ff1515db1",
                "md5": "a4d0a1e58f9887396810de8f316576af",
                "sha256": "c94b2f183aa59f78ecd80506c84eb663298992fb7dd5c0d34a2089cfa0b4a704"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4d0a1e58f9887396810de8f316576af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 48697595,
            "upload_time": "2024-04-22T22:00:14",
            "upload_time_iso_8601": "2024-04-22T22:00:14.071895Z",
            "url": "https://files.pythonhosted.org/packages/0a/22/a784b741f65800b2f7fe9a17215df3ba928e477fac4b6759bf6ff1515db1/mqt_core-2.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3885791fa3932ec22f933d10e2f7020f6bb88c11fbbb852703357ec1975dce1",
                "md5": "36f617072dbac63bd1f39003804b51ea",
                "sha256": "45b8936ee581ba108663f8400ccb2498362b2bbfeae9695a36d1b94372cf8c4e"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36f617072dbac63bd1f39003804b51ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 44154321,
            "upload_time": "2024-04-22T22:00:18",
            "upload_time_iso_8601": "2024-04-22T22:00:18.149130Z",
            "url": "https://files.pythonhosted.org/packages/a3/88/5791fa3932ec22f933d10e2f7020f6bb88c11fbbb852703357ec1975dce1/mqt_core-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc9b1af669e42d8dc5c82896070edf7abca3fd46a9475350f6fd16f668534c77",
                "md5": "ef9dac2cf6d64f6a590a44545bf0ca16",
                "sha256": "7070c31cb3481814845825442d2f590dbecf4204f2315e2a6e0ce72d0e46c62a"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef9dac2cf6d64f6a590a44545bf0ca16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 10340852,
            "upload_time": "2024-04-22T22:00:21",
            "upload_time_iso_8601": "2024-04-22T22:00:21.816502Z",
            "url": "https://files.pythonhosted.org/packages/cc/9b/1af669e42d8dc5c82896070edf7abca3fd46a9475350f6fd16f668534c77/mqt_core-2.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dc2ad003e176dcb213b7691bffaf8b165b855c639d50e85566495aac7dd4c43",
                "md5": "f62a06d1ce4c8e93ca5d85f8d81e23ac",
                "sha256": "6bc5e7805cc77ac39dfcb2bc6064e2e1eaa96e326d7074d377f04b90c5fa6440"
            },
            "downloads": -1,
            "filename": "mqt_core-2.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f62a06d1ce4c8e93ca5d85f8d81e23ac",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 243908,
            "upload_time": "2024-04-22T22:00:24",
            "upload_time_iso_8601": "2024-04-22T22:00:24.046621Z",
            "url": "https://files.pythonhosted.org/packages/7d/c2/ad003e176dcb213b7691bffaf8b165b855c639d50e85566495aac7dd4c43/mqt_core-2.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 22:00:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cda-tum",
    "github_project": "mqt-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mqt-core"
}
        
Elapsed time: 0.24735s