mqt-core


Namemqt-core JSON
Version 3.3.1 PyPI version JSON
download
home_pageNone
SummaryThe Backbone of the Munich Quantum Toolkit
upload_time2025-10-14 07:40:51
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
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)
[![DOI](https://img.shields.io/badge/JOSS-10.21105/joss.07478-blue.svg?style=flat-square)](https://doi.org/10.21105/joss.07478)
[![CI](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/munich-quantum-toolkit/core/actions/workflows/ci.yml)
[![CD](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/munich-quantum-toolkit/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/munich-quantum-toolkit/core?style=flat-square&logo=codecov)](https://codecov.io/gh/munich-quantum-toolkit/core)

<p align="center">
  <a href="https://mqt.readthedocs.io">
    <picture>
      <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-dark.svg" width="60%">
      <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-light.svg" width="60%" alt="MQT Logo">
    </picture>
  </a>
</p>

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

MQT Core is an open-source C++20 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).

<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>

## Key Features

- Fully fledged intermediate representation (IR) for quantum computations.
- A state-of-the-art decision diagram (DD) package for quantum computing.
- A dedicated ZX-diagram package for working with the ZX-calculus.
- A QIR runtime based on the decision diagram package.

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

## Contributors and Supporters

The _[Munich Quantum Toolkit (MQT)](https://mqt.readthedocs.io)_ is developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/) and supported by the [Munich Quantum Software Company (MQSC)](https://munichquantum.software).
Among others, it is part of the [Munich Quantum Software Stack (MQSS)](https://www.munich-quantum-valley.de/research/research-areas/mqss) ecosystem, which is being developed as part of the [Munich Quantum Valley (MQV)](https://www.munich-quantum-valley.de) initiative.

<p align="center">
  <picture>
    <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-dark.svg" width="90%">
    <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-light.svg" width="90%" alt="MQT Partner Logos">
  </picture>
</p>

Thank you to all the contributors who have helped make MQT Core a reality!

<p align="center">
  <a href="https://github.com/munich-quantum-toolkit/core/graphs/contributors">
  <img src="https://contrib.rocks/image?repo=munich-quantum-toolkit/core" alt="Contributors to munich-quantum-toolkit/core" />
  </a>
</p>

The MQT will remain free, open-source, and permissively licensed—now and in the future.
We are firmly committed to keeping it open and actively maintained for the quantum computing community.

To support this endeavor, please consider:

- Starring and sharing our repositories: https://github.com/munich-quantum-toolkit
- Contributing code, documentation, tests, or examples via issues and pull requests
- Citing the MQT in your publications (see [Cite This](#cite-this))
- Citing our research in your publications (see [References](https://mqt.readthedocs.io/projects/core/en/latest/references.html))
- Using the MQT in research and teaching, and sharing feedback and use cases
- Sponsoring us on GitHub: https://github.com/sponsors/munich-quantum-toolkit

<p align="center">
  <a href="https://github.com/sponsors/munich-quantum-toolkit">
  <img width=20% src="https://img.shields.io/badge/Sponsor-white?style=for-the-badge&logo=githubsponsors&labelColor=black&color=blue" alt="Sponsor the MQT" />
  </a>
</p>

## Getting Started

`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/).

```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 the project requires a C++ compiler with support for C++20 and CMake 3.24 or newer.
For details on how to build the project, please refer to the [documentation](https://mqt.readthedocs.io/projects/core).
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).
MQT Core is compatible with all [officially supported Python versions](https://devguide.python.org/versions/).

The project relies on some external dependencies:

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

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.

## Cite This

Please cite the work that best fits your use case.

### MQT Core (the tool)

When citing the software itself or results produced with it, cite the MQT Core paper:

```bibtex
@article{burgholzer2025MQTCore,
  title        = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},
  author       = {Burgholzer, Lukas and Stade, Yannick and Peham, Tom and Wille, Robert},
  year         = 2025,
  journal      = {Journal of Open Source Software},
  publisher    = {The Open Journal},
  volume       = 10,
  number       = 108,
  pages        = 7478,
  doi          = {10.21105/joss.07478},
  url          = {https://doi.org/10.21105/joss.07478}
}
```

### The Munich Quantum Toolkit (the project)

When discussing the overall MQT project or its ecosystem, cite the MQT Handbook:

```bibtex
@inproceedings{mqt,
  title        = {The {{MQT}} Handbook: {{A}} Summary of Design Automation Tools and Software for Quantum Computing},
  shorttitle   = {{The MQT Handbook}},
  author       = {Wille, Robert and Berent, Lucas and Forster, Tobias and Kunasaikaran, Jagatheesan and Mato, Kevin and Peham, Tom and Quetschlich, Nils and Rovara, Damian and Sander, Aaron and Schmid, Ludwig and Schoenberger, Daniel and Stade, Yannick and Burgholzer, Lukas},
  year         = 2024,
  booktitle    = {IEEE International Conference on Quantum Software (QSW)},
  doi          = {10.1109/QSW62656.2024.00013},
  eprint       = {2405.17543},
  eprinttype   = {arxiv},
  addendum     = {A live version of this document is available at \url{https://mqt.readthedocs.io}}
}
```

---

## 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/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-funding-footer-dark.svg" width="90%">
    <img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-funding-footer-light.svg" width="90%" alt="MQT Funding Footer">
  </picture>
</p>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mqt-core",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "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/45/72/5538020523f7bd56a5de37925500020eb1ccf47d4b5b3f1a0ac652960ab1/mqt_core-3.3.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[![DOI](https://img.shields.io/badge/JOSS-10.21105/joss.07478-blue.svg?style=flat-square)](https://doi.org/10.21105/joss.07478)\n[![CI](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/munich-quantum-toolkit/core/actions/workflows/ci.yml)\n[![CD](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/munich-quantum-toolkit/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/munich-quantum-toolkit/core?style=flat-square&logo=codecov)](https://codecov.io/gh/munich-quantum-toolkit/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/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-dark.svg\" width=\"60%\">\n      <img src=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/logo-mqt-light.svg\" width=\"60%\" alt=\"MQT Logo\">\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++20 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).\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\n## Key Features\n\n- Fully fledged intermediate representation (IR) for quantum computations.\n- A state-of-the-art decision diagram (DD) package for quantum computing.\n- A dedicated ZX-diagram package for working with the ZX-calculus.\n- A QIR runtime based on the decision diagram package.\n\nIf you have any questions, feel free to create a [discussion](https://github.com/munich-quantum-toolkit/core/discussions) or an [issue](https://github.com/munich-quantum-toolkit/core/issues) on [GitHub](https://github.com/munich-quantum-toolkit/core).\n\n## Contributors and Supporters\n\nThe _[Munich Quantum Toolkit (MQT)](https://mqt.readthedocs.io)_ is developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/) and supported by the [Munich Quantum Software Company (MQSC)](https://munichquantum.software).\nAmong others, it is part of the [Munich Quantum Software Stack (MQSS)](https://www.munich-quantum-valley.de/research/research-areas/mqss) ecosystem, which is being developed as part of the [Munich Quantum Valley (MQV)](https://www.munich-quantum-valley.de) initiative.\n\n<p align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-dark.svg\" width=\"90%\">\n    <img src=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-logo-banner-light.svg\" width=\"90%\" alt=\"MQT Partner Logos\">\n  </picture>\n</p>\n\nThank you to all the contributors who have helped make MQT Core a reality!\n\n<p align=\"center\">\n  <a href=\"https://github.com/munich-quantum-toolkit/core/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=munich-quantum-toolkit/core\" alt=\"Contributors to munich-quantum-toolkit/core\" />\n  </a>\n</p>\n\nThe MQT will remain free, open-source, and permissively licensed\u2014now and in the future.\nWe are firmly committed to keeping it open and actively maintained for the quantum computing community.\n\nTo support this endeavor, please consider:\n\n- Starring and sharing our repositories: https://github.com/munich-quantum-toolkit\n- Contributing code, documentation, tests, or examples via issues and pull requests\n- Citing the MQT in your publications (see [Cite This](#cite-this))\n- Citing our research in your publications (see [References](https://mqt.readthedocs.io/projects/core/en/latest/references.html))\n- Using the MQT in research and teaching, and sharing feedback and use cases\n- Sponsoring us on GitHub: https://github.com/sponsors/munich-quantum-toolkit\n\n<p align=\"center\">\n  <a href=\"https://github.com/sponsors/munich-quantum-toolkit\">\n  <img width=20% src=\"https://img.shields.io/badge/Sponsor-white?style=for-the-badge&logo=githubsponsors&labelColor=black&color=blue\" alt=\"Sponsor the MQT\" />\n  </a>\n</p>\n\n## Getting Started\n\n`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/).\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 the project requires a C++ compiler with support for C++20 and CMake 3.24 or newer.\nFor details on how to build the project, please refer to the [documentation](https://mqt.readthedocs.io/projects/core).\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).\nMQT Core is compatible with all [officially supported Python versions](https://devguide.python.org/versions/).\n\nThe project relies on some external dependencies:\n\n- [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).\n- [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.\n- [pybind/pybind11_json](https://github.com/pybind/pybind11_json): A library for using `nlohmann::json` with `pybind11` (only used for creating the Python bindings).\n- [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).\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## Cite This\n\nPlease cite the work that best fits your use case.\n\n### MQT Core (the tool)\n\nWhen citing the software itself or results produced with it, cite the MQT Core paper:\n\n```bibtex\n@article{burgholzer2025MQTCore,\n  title        = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},\n  author       = {Burgholzer, Lukas and Stade, Yannick and Peham, Tom and Wille, Robert},\n  year         = 2025,\n  journal      = {Journal of Open Source Software},\n  publisher    = {The Open Journal},\n  volume       = 10,\n  number       = 108,\n  pages        = 7478,\n  doi          = {10.21105/joss.07478},\n  url          = {https://doi.org/10.21105/joss.07478}\n}\n```\n\n### The Munich Quantum Toolkit (the project)\n\nWhen discussing the overall MQT project or its ecosystem, cite the MQT Handbook:\n\n```bibtex\n@inproceedings{mqt,\n  title        = {The {{MQT}} Handbook: {{A}} Summary of Design Automation Tools and Software for Quantum Computing},\n  shorttitle   = {{The MQT Handbook}},\n  author       = {Wille, Robert and Berent, Lucas and Forster, Tobias and Kunasaikaran, Jagatheesan and Mato, Kevin and Peham, Tom and Quetschlich, Nils and Rovara, Damian and Sander, Aaron and Schmid, Ludwig and Schoenberger, Daniel and Stade, Yannick and Burgholzer, Lukas},\n  year         = 2024,\n  booktitle    = {IEEE International Conference on Quantum Software (QSW)},\n  doi          = {10.1109/QSW62656.2024.00013},\n  eprint       = {2405.17543},\n  eprinttype   = {arxiv},\n  addendum     = {A live version of this document is available at \\url{https://mqt.readthedocs.io}}\n}\n```\n\n---\n\n## Acknowledgements\n\nThe 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.\n\n<p align=\"center\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-funding-footer-dark.svg\" width=\"90%\">\n    <img src=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-funding-footer-light.svg\" width=\"90%\" alt=\"MQT Funding Footer\">\n  </picture>\n</p>\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The Backbone of the Munich Quantum Toolkit",
    "version": "3.3.1",
    "project_urls": {
        "Changelog": "https://github.com/munich-quantum-toolkit/core/blob/main/CHANGELOG.md",
        "Discussions": "https://github.com/munich-quantum-toolkit/core/discussions",
        "Documentation": "https://mqt.readthedocs.io/projects/core",
        "Homepage": "https://github.com/munich-quantum-toolkit/core",
        "Issues": "https://github.com/munich-quantum-toolkit/core/issues",
        "PyPI": "https://pypi.org/project/mqt-core/"
    },
    "split_keywords": [
        "mqt",
        " quantum-computing",
        " design-automation",
        " decision-diagrams",
        " zx-calculus"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c25ea296e354c19e991859abd1811db84ad4ad505765983cf1f9170c53a911ec",
                "md5": "6136f1cfae31107566966f4b4eb3b26a",
                "sha256": "c0801bf169eb3bc688f6400d18b8550e20c6441b3201d1d59889b88fbe0d7f5a"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6136f1cfae31107566966f4b4eb3b26a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 5648751,
            "upload_time": "2025-10-14T07:39:40",
            "upload_time_iso_8601": "2025-10-14T07:39:40.028619Z",
            "url": "https://files.pythonhosted.org/packages/c2/5e/a296e354c19e991859abd1811db84ad4ad505765983cf1f9170c53a911ec/mqt_core-3.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1af8982adbc2a59cbbaeb676535c071ed6c8fbcd15e061527753f02850aba2ed",
                "md5": "4a021a312244418c38c2bdc43deb460d",
                "sha256": "ec2cdff6c9c3f68ac0a5e1d22a22989c142954a295dc04f8e7e4a2225a207280"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a021a312244418c38c2bdc43deb460d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 5989288,
            "upload_time": "2025-10-14T07:39:42",
            "upload_time_iso_8601": "2025-10-14T07:39:42.359681Z",
            "url": "https://files.pythonhosted.org/packages/1a/f8/982adbc2a59cbbaeb676535c071ed6c8fbcd15e061527753f02850aba2ed/mqt_core-3.3.1-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eae08b5bc33b5f446392c3c193368f5131cbf06a8871c3c3c9088b70e1a3099d",
                "md5": "a6f6764fca56b35134b55b6335e4189a",
                "sha256": "dd66ea4feb22e29030dbe7f051e14cef07a09cba848aa937415def3cb0915189"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a6f6764fca56b35134b55b6335e4189a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 7740857,
            "upload_time": "2025-10-14T07:39:44",
            "upload_time_iso_8601": "2025-10-14T07:39:44.503096Z",
            "url": "https://files.pythonhosted.org/packages/ea/e0/8b5bc33b5f446392c3c193368f5131cbf06a8871c3c3c9088b70e1a3099d/mqt_core-3.3.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41f4c6521d0db111cd645e614ecc6b5d3300dd712338ce6bf826f8ec907eb1c2",
                "md5": "c20394e12b798868f012f980607ed843",
                "sha256": "123b646681042d02df9608d2370c5078160acdaad92fb2f38d8f1ab5fee8ae2e"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c20394e12b798868f012f980607ed843",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 8139060,
            "upload_time": "2025-10-14T07:39:46",
            "upload_time_iso_8601": "2025-10-14T07:39:46.192608Z",
            "url": "https://files.pythonhosted.org/packages/41/f4/c6521d0db111cd645e614ecc6b5d3300dd712338ce6bf826f8ec907eb1c2/mqt_core-3.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bc3a66d68c145f8a6e9e5831bb2b67fd9e6707d5e3b4616350d8c2ce0602e08",
                "md5": "a6c7ad07f13053f7ee257f7c7091b9af",
                "sha256": "0e3fa37b3bad8cb62110760050fbb4abcf540b079508bbfcd3f8b8b4d937af13"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a6c7ad07f13053f7ee257f7c7091b9af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 4116997,
            "upload_time": "2025-10-14T07:39:49",
            "upload_time_iso_8601": "2025-10-14T07:39:49.291799Z",
            "url": "https://files.pythonhosted.org/packages/2b/c3/a66d68c145f8a6e9e5831bb2b67fd9e6707d5e3b4616350d8c2ce0602e08/mqt_core-3.3.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24620dc540c2b413b2c49d2745fe9ad795aa939818f8b4e1277084c46028c9fd",
                "md5": "fe57e0b493a8451906f7cf4e966aba83",
                "sha256": "48b2a9739307284b19f2818a4ce14d1a089646a2d99cfb69c631ea98ce7c56f6"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "fe57e0b493a8451906f7cf4e966aba83",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 4243469,
            "upload_time": "2025-10-14T07:39:52",
            "upload_time_iso_8601": "2025-10-14T07:39:52.224965Z",
            "url": "https://files.pythonhosted.org/packages/24/62/0dc540c2b413b2c49d2745fe9ad795aa939818f8b4e1277084c46028c9fd/mqt_core-3.3.1-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d13f5344878eaaecddab24c83856e3d0247476809a2c82597c12715f2e4c990",
                "md5": "b821070a7b0ef994bb7105caa1b8b485",
                "sha256": "ffdb32291919a9ba3f8593520f3abd727b1fba4f26294d6c3152a015bc215c9b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b821070a7b0ef994bb7105caa1b8b485",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 5652649,
            "upload_time": "2025-10-14T07:39:53",
            "upload_time_iso_8601": "2025-10-14T07:39:53.864925Z",
            "url": "https://files.pythonhosted.org/packages/0d/13/f5344878eaaecddab24c83856e3d0247476809a2c82597c12715f2e4c990/mqt_core-3.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a51b314555c7997ee532f81d926d0b89abc136c1eb6fc54320564906e26c425",
                "md5": "1746ef5af1e71d2072ee0135a73da8b9",
                "sha256": "35128115d8e171a7552e8097bbba1cfe805edb5db7e23c75e8de72f60e59f663"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1746ef5af1e71d2072ee0135a73da8b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 5994189,
            "upload_time": "2025-10-14T07:39:55",
            "upload_time_iso_8601": "2025-10-14T07:39:55.677527Z",
            "url": "https://files.pythonhosted.org/packages/7a/51/b314555c7997ee532f81d926d0b89abc136c1eb6fc54320564906e26c425/mqt_core-3.3.1-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b60370229592ac2e5dfb277960044dd6a4e42b166aac79e29eb58adbc5c6fadf",
                "md5": "c4e01edd185f1fe5af35d9b687fa392c",
                "sha256": "1bfb57e2a048a9fd32058c6476922a13b34f49e1acd8414fb24987e2663d7da1"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c4e01edd185f1fe5af35d9b687fa392c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 7743170,
            "upload_time": "2025-10-14T07:39:57",
            "upload_time_iso_8601": "2025-10-14T07:39:57.081365Z",
            "url": "https://files.pythonhosted.org/packages/b6/03/70229592ac2e5dfb277960044dd6a4e42b166aac79e29eb58adbc5c6fadf/mqt_core-3.3.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fb5f1136f5b49d5df64a5a43715383adfd7d8eca818fb11a1de420f0b927f02",
                "md5": "b86203306af485fcf9c92a6ec71fd8b1",
                "sha256": "a5027a1aede3b0857751ce028b673dd89db6346997c3677f417102f2f05cd826"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b86203306af485fcf9c92a6ec71fd8b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 8140893,
            "upload_time": "2025-10-14T07:39:58",
            "upload_time_iso_8601": "2025-10-14T07:39:58.800340Z",
            "url": "https://files.pythonhosted.org/packages/9f/b5/f1136f5b49d5df64a5a43715383adfd7d8eca818fb11a1de420f0b927f02/mqt_core-3.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e2124d6979123b60c6c50f5f9bbb6ed1f62a7078f48457cf66797ee3f8f119e",
                "md5": "6d28f143ea910403d7efdcb6e1b1e274",
                "sha256": "363f67c2e6cc92675027be1ae5e1866973d684c5ccb6bc3ad9c8ad90611031b4"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d28f143ea910403d7efdcb6e1b1e274",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 4119611,
            "upload_time": "2025-10-14T07:40:00",
            "upload_time_iso_8601": "2025-10-14T07:40:00.631024Z",
            "url": "https://files.pythonhosted.org/packages/7e/21/24d6979123b60c6c50f5f9bbb6ed1f62a7078f48457cf66797ee3f8f119e/mqt_core-3.3.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb1bc6a839676da97308a9d3b0554541fae16487efd909369d26ef95e5a6f45d",
                "md5": "e27a5015fb1be7cf61c6fc4bb4f1b328",
                "sha256": "22f63f7f2c7b40358efd09f42448b916ed014cb72885d1d8bf56f77e8cdc8620"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "e27a5015fb1be7cf61c6fc4bb4f1b328",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 4247515,
            "upload_time": "2025-10-14T07:40:02",
            "upload_time_iso_8601": "2025-10-14T07:40:02.135411Z",
            "url": "https://files.pythonhosted.org/packages/cb/1b/c6a839676da97308a9d3b0554541fae16487efd909369d26ef95e5a6f45d/mqt_core-3.3.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "719bfcb001b5059410c9686242320a2051a889483bf39ea4e5e08fe3ee161095",
                "md5": "6478278a5f8227622127cf011609be60",
                "sha256": "e7852e617a5c7cf9bdc9867fa889553c0bd465dacdfaa44c1797ce7c1f1054fe"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6478278a5f8227622127cf011609be60",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 5705742,
            "upload_time": "2025-10-14T07:40:04",
            "upload_time_iso_8601": "2025-10-14T07:40:04.260081Z",
            "url": "https://files.pythonhosted.org/packages/71/9b/fcb001b5059410c9686242320a2051a889483bf39ea4e5e08fe3ee161095/mqt_core-3.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3228ee06b869cd807d6721043ec036ae7b28c0cfcbb6e6d25788f34eab3700e4",
                "md5": "a90c85c23a0b71ff4b51070ea06e60ea",
                "sha256": "4a1e809c4235a32d47b274e56a130af3d4746eaa4104e0102bae66c519eef895"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a90c85c23a0b71ff4b51070ea06e60ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 6053702,
            "upload_time": "2025-10-14T07:40:06",
            "upload_time_iso_8601": "2025-10-14T07:40:06.210878Z",
            "url": "https://files.pythonhosted.org/packages/32/28/ee06b869cd807d6721043ec036ae7b28c0cfcbb6e6d25788f34eab3700e4/mqt_core-3.3.1-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce6260125d8df78ea184505dd321f6fc8de767ae12dd65ebf92f1276aecf1e76",
                "md5": "15871eac789bf1d90c88b4d03e8d7c27",
                "sha256": "121684ff92855195b466168d045ba9c98cb9e26680173fdf86f5d9ca004a92a2"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "15871eac789bf1d90c88b4d03e8d7c27",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 7744653,
            "upload_time": "2025-10-14T07:40:07",
            "upload_time_iso_8601": "2025-10-14T07:40:07.633278Z",
            "url": "https://files.pythonhosted.org/packages/ce/62/60125d8df78ea184505dd321f6fc8de767ae12dd65ebf92f1276aecf1e76/mqt_core-3.3.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0927908c109d36ebdd9338c833ad50c1cd071264dc4ad00d0bda892dc8599bba",
                "md5": "d873a394fc4282f5690f0f5ad64f76c5",
                "sha256": "63df742c55a35bf56b378e52ed308cf99e9d53fa085fe4c009167f13a3313411"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d873a394fc4282f5690f0f5ad64f76c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 8142896,
            "upload_time": "2025-10-14T07:40:09",
            "upload_time_iso_8601": "2025-10-14T07:40:09.233533Z",
            "url": "https://files.pythonhosted.org/packages/09/27/908c109d36ebdd9338c833ad50c1cd071264dc4ad00d0bda892dc8599bba/mqt_core-3.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "758c2c9f7b8d4ac606ef45af7c56dddaf38f363a6a6bd2ce8a8f764a12013f59",
                "md5": "ae703c2911efa1a0f8a991c68fbcd821",
                "sha256": "1ed17c4035fa5d50450f1622b57369a5f0b4b85b95ae179396e99f57b511e147"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ae703c2911efa1a0f8a991c68fbcd821",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 4125523,
            "upload_time": "2025-10-14T07:40:10",
            "upload_time_iso_8601": "2025-10-14T07:40:10.862371Z",
            "url": "https://files.pythonhosted.org/packages/75/8c/2c9f7b8d4ac606ef45af7c56dddaf38f363a6a6bd2ce8a8f764a12013f59/mqt_core-3.3.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e524f2277ee4876da9d50cb127438a0ad62f91a9116d8084d5db326536441d4a",
                "md5": "92da5bb5286675d68d9e650e3a5eb802",
                "sha256": "1e14c6ff236469cabc3744b3652073345b9efbe9005ad3d0598bd1a90b772ef8"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "92da5bb5286675d68d9e650e3a5eb802",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 4249601,
            "upload_time": "2025-10-14T07:40:12",
            "upload_time_iso_8601": "2025-10-14T07:40:12.231275Z",
            "url": "https://files.pythonhosted.org/packages/e5/24/f2277ee4876da9d50cb127438a0ad62f91a9116d8084d5db326536441d4a/mqt_core-3.3.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6ae5445095588dec874b45a1aefa50215d24e069ba7b3dad5bc79d90386b2af",
                "md5": "1723bea5ecd4945cc1e57b8f78a8ed8f",
                "sha256": "352a975ed44a4ec2181da0ae7c4ba6d31cb37f7bbcd5c968b6046cda4533fd27"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1723bea5ecd4945cc1e57b8f78a8ed8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 5705819,
            "upload_time": "2025-10-14T07:40:13",
            "upload_time_iso_8601": "2025-10-14T07:40:13.627551Z",
            "url": "https://files.pythonhosted.org/packages/a6/ae/5445095588dec874b45a1aefa50215d24e069ba7b3dad5bc79d90386b2af/mqt_core-3.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f80434ddc1e1afe2967a46ecbda84d8f269f649b73a7dbc614ab76fe5188be45",
                "md5": "bf123775d99cf5a927d115e28b6c38e0",
                "sha256": "bb02e5c3708bf9e180f9bdad29a7e4654262787e9d9868d8e8150d4f8c6fc8fd"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf123775d99cf5a927d115e28b6c38e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 6053932,
            "upload_time": "2025-10-14T07:40:15",
            "upload_time_iso_8601": "2025-10-14T07:40:15.511025Z",
            "url": "https://files.pythonhosted.org/packages/f8/04/34ddc1e1afe2967a46ecbda84d8f269f649b73a7dbc614ab76fe5188be45/mqt_core-3.3.1-cp313-cp313-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b0289812ee9c70d3a453fbf2f1cd0570d12166f2319d1b457572dfa0a3c5525",
                "md5": "405c9f6173ad810830bfda4ec96ff4d5",
                "sha256": "6827f766f9746326541451c69db8afd57cfa260eba66fd7f07c6f1eb805dcce4"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "405c9f6173ad810830bfda4ec96ff4d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 7744706,
            "upload_time": "2025-10-14T07:40:16",
            "upload_time_iso_8601": "2025-10-14T07:40:16.931288Z",
            "url": "https://files.pythonhosted.org/packages/1b/02/89812ee9c70d3a453fbf2f1cd0570d12166f2319d1b457572dfa0a3c5525/mqt_core-3.3.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed65a0ab78e034606107af83d7c183801a71f023fdfa9be2636f1f113d5f3d2b",
                "md5": "ed1d48eb1330664b75be6a1886e1f3c5",
                "sha256": "83673caef120734b2e7359a94786c18302a97fdadf903a0ada2c9c299aecfe97"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed1d48eb1330664b75be6a1886e1f3c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 8143101,
            "upload_time": "2025-10-14T07:40:19",
            "upload_time_iso_8601": "2025-10-14T07:40:19.271270Z",
            "url": "https://files.pythonhosted.org/packages/ed/65/a0ab78e034606107af83d7c183801a71f023fdfa9be2636f1f113d5f3d2b/mqt_core-3.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86b153cad7fdd5578670a93d3022fc701c3a0a057c3427de354436d539249111",
                "md5": "a7c97b55183f1af4638bd26f2c151ebc",
                "sha256": "09f59dc82a3548af1759fb91cff30545a91c70410842beb4b475ea169fbcb9a7"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a7c97b55183f1af4638bd26f2c151ebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 5724017,
            "upload_time": "2025-10-14T07:40:24",
            "upload_time_iso_8601": "2025-10-14T07:40:24.404617Z",
            "url": "https://files.pythonhosted.org/packages/86/b1/53cad7fdd5578670a93d3022fc701c3a0a057c3427de354436d539249111/mqt_core-3.3.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fca8e56638f4bc60fcb7d164c46a29b94f009ef08800a3ee6337f3f8332a62e",
                "md5": "f4bd9f2fbae9cf46153ab6943e89c8fa",
                "sha256": "b8d64682e4d62a119c2fc022d70528e544a46016a3c72e7a9a39d7d2b423b6c0"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4bd9f2fbae9cf46153ab6943e89c8fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 6080521,
            "upload_time": "2025-10-14T07:40:25",
            "upload_time_iso_8601": "2025-10-14T07:40:25.921379Z",
            "url": "https://files.pythonhosted.org/packages/7f/ca/8e56638f4bc60fcb7d164c46a29b94f009ef08800a3ee6337f3f8332a62e/mqt_core-3.3.1-cp313-cp313t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a76d82e4f523ccf5ecd44bfc672a785bffe1d7b59a345aa9e85b7e0a2939f417",
                "md5": "51accea388ece97d2a7ba4f94b1fd91b",
                "sha256": "e10a2af2515bebb0b2f6b0b745ba8891ac08d1f1f53183f2fbc9aa1c03c7f69e"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51accea388ece97d2a7ba4f94b1fd91b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 7753799,
            "upload_time": "2025-10-14T07:40:27",
            "upload_time_iso_8601": "2025-10-14T07:40:27.359801Z",
            "url": "https://files.pythonhosted.org/packages/a7/6d/82e4f523ccf5ecd44bfc672a785bffe1d7b59a345aa9e85b7e0a2939f417/mqt_core-3.3.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4604742ffe4639d33696fe1f84194a4d3833b06f6228b43765af593c6fc8f166",
                "md5": "8b312f9115680486937e1626b5a7548d",
                "sha256": "a5701d0a0f31007eb517de161159ceb25961af874868b4dca56d0350457d40a6"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b312f9115680486937e1626b5a7548d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 8152450,
            "upload_time": "2025-10-14T07:40:28",
            "upload_time_iso_8601": "2025-10-14T07:40:28.828264Z",
            "url": "https://files.pythonhosted.org/packages/46/04/742ffe4639d33696fe1f84194a4d3833b06f6228b43765af593c6fc8f166/mqt_core-3.3.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc10cb225492443fc5a5d82bb764247a9661cd51e3dba704741b98a91e889b64",
                "md5": "f69d629d3d270b9fe1b74d37d825bb42",
                "sha256": "f3aa3c1fe38607a9fa3e556be211527833d1fcd9926e534d8347c11e45560a50"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f69d629d3d270b9fe1b74d37d825bb42",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 4175550,
            "upload_time": "2025-10-14T07:40:30",
            "upload_time_iso_8601": "2025-10-14T07:40:30.297809Z",
            "url": "https://files.pythonhosted.org/packages/bc/10/cb225492443fc5a5d82bb764247a9661cd51e3dba704741b98a91e889b64/mqt_core-3.3.1-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e9cf63c330b7b1c4f9ecabb64289584752445aed8900170027916f9b50a998a",
                "md5": "0633ec1fa96854cdd8e667c17cf175d8",
                "sha256": "5c90b35b37d0cf19186edf69af2f26d247cdf9fe9c5bb6e71ac40c4addad07b7"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "0633ec1fa96854cdd8e667c17cf175d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 4275784,
            "upload_time": "2025-10-14T07:40:31",
            "upload_time_iso_8601": "2025-10-14T07:40:31.684812Z",
            "url": "https://files.pythonhosted.org/packages/0e/9c/f63c330b7b1c4f9ecabb64289584752445aed8900170027916f9b50a998a/mqt_core-3.3.1-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e78bde309e7812d235257de141761647c1b6978b0086b59368bb36020f7f8327",
                "md5": "53c88669234aa8018dff931eb7fde0a7",
                "sha256": "3b7ed81f6530d83313274256745e855c5dcf1f0329cf53edc1118e3aa27e0dc6"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53c88669234aa8018dff931eb7fde0a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 4125543,
            "upload_time": "2025-10-14T07:40:20",
            "upload_time_iso_8601": "2025-10-14T07:40:20.911649Z",
            "url": "https://files.pythonhosted.org/packages/e7/8b/de309e7812d235257de141761647c1b6978b0086b59368bb36020f7f8327/mqt_core-3.3.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbd2aeb73e8c3b27baeb4666cde6ac4182fb8029c18aabac3f9109eb7b4ade16",
                "md5": "96217074efb50c3597d33b60adea93e6",
                "sha256": "c46d2825ffe6fe399eb61cf84ab3e7c33f5ad7fdfa8f6ff7014f3c72362ec813"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "96217074efb50c3597d33b60adea93e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 4249502,
            "upload_time": "2025-10-14T07:40:22",
            "upload_time_iso_8601": "2025-10-14T07:40:22.688558Z",
            "url": "https://files.pythonhosted.org/packages/bb/d2/aeb73e8c3b27baeb4666cde6ac4182fb8029c18aabac3f9109eb7b4ade16/mqt_core-3.3.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "843e0ed7c619d2a45ec36fffe1ca2ca5e63cf61e253373e108771b1dea54ff95",
                "md5": "92858b34ba7bc330351114783020550a",
                "sha256": "2a5afcb97a8e1ebc76a474ec7c6894e9f0b786b6a9b9b2549e6f1d1affb345c5"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92858b34ba7bc330351114783020550a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 5707298,
            "upload_time": "2025-10-14T07:40:33",
            "upload_time_iso_8601": "2025-10-14T07:40:33.136271Z",
            "url": "https://files.pythonhosted.org/packages/84/3e/0ed7c619d2a45ec36fffe1ca2ca5e63cf61e253373e108771b1dea54ff95/mqt_core-3.3.1-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c1e038b49268588db7253c323ad7ec2f7941d5e15c66cc9b45a68be06942bc0",
                "md5": "d190658b9aee50d936c6104cb6797f02",
                "sha256": "6b196269c4ce092f74e126b30d2930b8e4bebc82e623596be9b2b4ea50352ae7"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d190658b9aee50d936c6104cb6797f02",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 6056524,
            "upload_time": "2025-10-14T07:40:34",
            "upload_time_iso_8601": "2025-10-14T07:40:34.661613Z",
            "url": "https://files.pythonhosted.org/packages/0c/1e/038b49268588db7253c323ad7ec2f7941d5e15c66cc9b45a68be06942bc0/mqt_core-3.3.1-cp314-cp314-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32e58f0bacba61b15fb645e40b8be6df43a4116defc88a525b746356b118d5ac",
                "md5": "a3270bf085014ffc4c49970bc7cc7ac5",
                "sha256": "c45334b2ebc2d041d54c9ee503cbcdc6139efdcd94766c2ee7bdfddcaa649862"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a3270bf085014ffc4c49970bc7cc7ac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 7744836,
            "upload_time": "2025-10-14T07:40:36",
            "upload_time_iso_8601": "2025-10-14T07:40:36.377569Z",
            "url": "https://files.pythonhosted.org/packages/32/e5/8f0bacba61b15fb645e40b8be6df43a4116defc88a525b746356b118d5ac/mqt_core-3.3.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d46dbfec91805bfdf83ad467dd954aa0c87eb45666e1765d6be76c46646fa27a",
                "md5": "31194ddafd07b616fcb8b33ce2792bc5",
                "sha256": "56d6dd6f3dba2503ce3aa51be1d159eb62bdcf487ec4b100153adf1d5653ca61"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31194ddafd07b616fcb8b33ce2792bc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 8143180,
            "upload_time": "2025-10-14T07:40:37",
            "upload_time_iso_8601": "2025-10-14T07:40:37.943957Z",
            "url": "https://files.pythonhosted.org/packages/d4/6d/bfec91805bfdf83ad467dd954aa0c87eb45666e1765d6be76c46646fa27a/mqt_core-3.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16fc95bb45dbe95afe5afa167ef6f85bbb6a7996924933ba6bba7f9f87cf319c",
                "md5": "60e36adde3d0267554c9df03277e04fc",
                "sha256": "a3b96a1758050ec07a0b3ea654a9ea7b96a9897ce35680b8877ad389d217dc02"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "60e36adde3d0267554c9df03277e04fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 5724038,
            "upload_time": "2025-10-14T07:40:42",
            "upload_time_iso_8601": "2025-10-14T07:40:42.660101Z",
            "url": "https://files.pythonhosted.org/packages/16/fc/95bb45dbe95afe5afa167ef6f85bbb6a7996924933ba6bba7f9f87cf319c/mqt_core-3.3.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bf95b8f57d12206f6acc9c4f0349100a3727122f0b28fa828067ce935646e67",
                "md5": "6efac6ad9368529485e1261a33a85100",
                "sha256": "db93fded27c7be23d4609497e76136f9092234a55d9b26cbb9516e8e1f4257fc"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6efac6ad9368529485e1261a33a85100",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 6080576,
            "upload_time": "2025-10-14T07:40:44",
            "upload_time_iso_8601": "2025-10-14T07:40:44.103188Z",
            "url": "https://files.pythonhosted.org/packages/4b/f9/5b8f57d12206f6acc9c4f0349100a3727122f0b28fa828067ce935646e67/mqt_core-3.3.1-cp314-cp314t-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "386647b9c045747e20243252cda8d6b4bf8e4627fc1e5606525fae7037f51ea9",
                "md5": "a77065ed47fdd48786ced50f2bf95090",
                "sha256": "40ed76fea80b4af3b61187caf1c63fcbac82858024f69db9c5dab0b3fbff63f1"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a77065ed47fdd48786ced50f2bf95090",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 7753737,
            "upload_time": "2025-10-14T07:40:45",
            "upload_time_iso_8601": "2025-10-14T07:40:45.500765Z",
            "url": "https://files.pythonhosted.org/packages/38/66/47b9c045747e20243252cda8d6b4bf8e4627fc1e5606525fae7037f51ea9/mqt_core-3.3.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22602e643cc9e404d7e85ffe6d402955cf643be2c89f290508f7ad6c5363adcb",
                "md5": "ed6c029668db078b829e1f326c531bd3",
                "sha256": "4e62b76e68b06a4464de428fc7d287347aa1850d4aa5766e1e2727b915691476"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed6c029668db078b829e1f326c531bd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 8152476,
            "upload_time": "2025-10-14T07:40:47",
            "upload_time_iso_8601": "2025-10-14T07:40:47.376925Z",
            "url": "https://files.pythonhosted.org/packages/22/60/2e643cc9e404d7e85ffe6d402955cf643be2c89f290508f7ad6c5363adcb/mqt_core-3.3.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "165b17517c2bf1fcb985c07fdd31960025bd505be3a87b828259c374966df9ea",
                "md5": "276de2e270b03f4caed4f5e65c22ffc5",
                "sha256": "8d5e6a102cbac2919c51f834865fb372b38c8c02a43e25f14e6ab82a63c9f28a"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "276de2e270b03f4caed4f5e65c22ffc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 4245724,
            "upload_time": "2025-10-14T07:40:48",
            "upload_time_iso_8601": "2025-10-14T07:40:48.800131Z",
            "url": "https://files.pythonhosted.org/packages/16/5b/17517c2bf1fcb985c07fdd31960025bd505be3a87b828259c374966df9ea/mqt_core-3.3.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce997a8e05c485414104e0ecb53e8c6c298939479453851959c7110d98937405",
                "md5": "24de90c6ba8d5a9c8a804ec98f2fa61f",
                "sha256": "72a343da872236d4583aefff8843ec582c8f6487a18389176327328b984eeb29"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "24de90c6ba8d5a9c8a804ec98f2fa61f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 4334098,
            "upload_time": "2025-10-14T07:40:50",
            "upload_time_iso_8601": "2025-10-14T07:40:50.163949Z",
            "url": "https://files.pythonhosted.org/packages/ce/99/7a8e05c485414104e0ecb53e8c6c298939479453851959c7110d98937405/mqt_core-3.3.1-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "518a9e27e7c60246bbb6c5a960d5ae6bbc96d36acf1cd73576df7b4c9336bd52",
                "md5": "a6aa8118b859d087a83e577644c9e2fd",
                "sha256": "d9bf98a05d0869c55be1810f09a0ed20055c76b5cc6bc36aa9e136c382a16d0b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a6aa8118b859d087a83e577644c9e2fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 4183269,
            "upload_time": "2025-10-14T07:40:39",
            "upload_time_iso_8601": "2025-10-14T07:40:39.459776Z",
            "url": "https://files.pythonhosted.org/packages/51/8a/9e27e7c60246bbb6c5a960d5ae6bbc96d36acf1cd73576df7b4c9336bd52/mqt_core-3.3.1-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10f5ae20dd1f4e46756966dadb69af8d124aaf47c0f10cd2ae26728622662b3c",
                "md5": "cd3fa399795f805fe7b71d58c555180a",
                "sha256": "2830aaa66fe3a7a976f00350e46ac74afafc5ef574650ee69336a11a5f88d775"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd3fa399795f805fe7b71d58c555180a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.10",
            "size": 4311317,
            "upload_time": "2025-10-14T07:40:41",
            "upload_time_iso_8601": "2025-10-14T07:40:41.265021Z",
            "url": "https://files.pythonhosted.org/packages/10/f5/ae20dd1f4e46756966dadb69af8d124aaf47c0f10cd2ae26728622662b3c/mqt_core-3.3.1-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45725538020523f7bd56a5de37925500020eb1ccf47d4b5b3f1a0ac652960ab1",
                "md5": "aaaafb7bcbaea191e768387aa27fae7a",
                "sha256": "24e5fd5de2281a0e101bd69da77154491537aa1b75d9cbd5e00246930115847b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "aaaafb7bcbaea191e768387aa27fae7a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 555958,
            "upload_time": "2025-10-14T07:40:51",
            "upload_time_iso_8601": "2025-10-14T07:40:51.502192Z",
            "url": "https://files.pythonhosted.org/packages/45/72/5538020523f7bd56a5de37925500020eb1ccf47d4b5b3f1a0ac652960ab1/mqt_core-3.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-14 07:40:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "munich-quantum-toolkit",
    "github_project": "core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mqt-core"
}
        
Elapsed time: 3.62802s