mqt-core


Namemqt-core JSON
Version 3.2.1 PyPI version JSON
download
home_pageNone
SummaryThe Backbone of the Munich Quantum Toolkit
upload_time2025-08-01 09:34:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
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.

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" />
</a>
</p>

## Getting Started

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

```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++20 and a minimum CMake version of 3.24.

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.

## Cite This

If you want to cite MQT Core, please use the following BibTeX entry:

```bibtex
@article{burgholzer2025MQTCore,
    title     = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},
    author    = {Lukas Burgholzer and Yannick Stade and Tom Peham and Robert Wille},
    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},
}
```

---

## 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.9",
    "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/93/9a/ae281b24049d7020a9970c2d7ffa6374852070caaec71c4cda862fe3d8f5/mqt_core-3.2.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\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\" />\n</a>\n</p>\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.9 to 3.14.\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++20 and a minimum CMake version of 3.24.\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## Cite This\n\nIf you want to cite MQT Core, please use the following BibTeX entry:\n\n```bibtex\n@article{burgholzer2025MQTCore,\n    title     = {{{MQT Core}}: {{The}} Backbone of the {{Munich Quantum Toolkit (MQT)}}},\n    author    = {Lukas Burgholzer and Yannick Stade and Tom Peham and Robert Wille},\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---\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/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.2.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": "d41c1bb21d11a212f31b7af574d07f69beb8cb1bfe74a45127cb35062b4ddfc1",
                "md5": "7316a85942b9275c43f97ef2aa62fc0f",
                "sha256": "9867290087ff85bdb23ea934c8f7d4efb34dc2fa1054f6c2d02ff580e38b4e72"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7316a85942b9275c43f97ef2aa62fc0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3156731,
            "upload_time": "2025-08-01T09:33:15",
            "upload_time_iso_8601": "2025-08-01T09:33:15.904265Z",
            "url": "https://files.pythonhosted.org/packages/d4/1c/1bb21d11a212f31b7af574d07f69beb8cb1bfe74a45127cb35062b4ddfc1/mqt_core-3.2.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f705c52be00ef858d42227989a4baab74fc3e71b835ce7f052ee3ebc9585252a",
                "md5": "1859ed0e301f71434f0862b6a090c980",
                "sha256": "0182ce22a305be14411fc7ca4bf761097b71d6f366cbe663f895843f519bc222"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1859ed0e301f71434f0862b6a090c980",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2863197,
            "upload_time": "2025-08-01T09:33:17",
            "upload_time_iso_8601": "2025-08-01T09:33:17.997605Z",
            "url": "https://files.pythonhosted.org/packages/f7/05/c52be00ef858d42227989a4baab74fc3e71b835ce7f052ee3ebc9585252a/mqt_core-3.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3093cb10177a370d74aa44b6447deb3d52bec4635f370146342febcffbf6cd7a",
                "md5": "0d47b45e54ef46a14fbaf4fc1d818c2b",
                "sha256": "ebb909eb4e93400293c8b3b6b58a1362c6d350c0c0fbcbfcec0fb7b36dc857dc"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d47b45e54ef46a14fbaf4fc1d818c2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3611483,
            "upload_time": "2025-08-01T09:33:19",
            "upload_time_iso_8601": "2025-08-01T09:33:19.976913Z",
            "url": "https://files.pythonhosted.org/packages/30/93/cb10177a370d74aa44b6447deb3d52bec4635f370146342febcffbf6cd7a/mqt_core-3.2.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8847733a48c02089b9e15e6977dda10b67561494e00e0b2db7482884dc1a021",
                "md5": "1f0d3952d77b96aaad44e59908f68a28",
                "sha256": "961b6a3a2b5ee6cfd1a57f3640de009adcc0e5d84179ea6d33756ec5228b060c"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f0d3952d77b96aaad44e59908f68a28",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 3848531,
            "upload_time": "2025-08-01T09:33:21",
            "upload_time_iso_8601": "2025-08-01T09:33:21.679644Z",
            "url": "https://files.pythonhosted.org/packages/f8/84/7733a48c02089b9e15e6977dda10b67561494e00e0b2db7482884dc1a021/mqt_core-3.2.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": "f3790861916f9bbc5c8e63ee8568f4cba5285763a007d032c7f3cef09a3f0feb",
                "md5": "c2af20906bfbc07a4b047060bef7fca3",
                "sha256": "ed0fabdb999e76e9adcbd1b82a4528f725316a9f183ca3b9cf376e76476af09d"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c2af20906bfbc07a4b047060bef7fca3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2355749,
            "upload_time": "2025-08-01T09:33:23",
            "upload_time_iso_8601": "2025-08-01T09:33:23.124044Z",
            "url": "https://files.pythonhosted.org/packages/f3/79/0861916f9bbc5c8e63ee8568f4cba5285763a007d032c7f3cef09a3f0feb/mqt_core-3.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d8518f0f7d9f8e1140639228e2787ae0a840e5a14f60bbf83320d8266126668",
                "md5": "02f2fd5cf1234858c07aedaa9385129e",
                "sha256": "935588da5fcfde0b8203b681b33ff9ecca204c361e78384e86022057b4e15ed0"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "02f2fd5cf1234858c07aedaa9385129e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2449880,
            "upload_time": "2025-08-01T09:33:25",
            "upload_time_iso_8601": "2025-08-01T09:33:25.048278Z",
            "url": "https://files.pythonhosted.org/packages/6d/85/18f0f7d9f8e1140639228e2787ae0a840e5a14f60bbf83320d8266126668/mqt_core-3.2.1-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9852f09870b7f8c859b900ea13d5e0019ab97cfbf5517b19533c2e7c6e273ab8",
                "md5": "42bf598d6b5678bb7a3fc9321981ea05",
                "sha256": "d4e57b0e3dee2fbee0bca6d426d14e2ba5e55efb53c42435b3e90657004daa42"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42bf598d6b5678bb7a3fc9321981ea05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3158767,
            "upload_time": "2025-08-01T09:33:26",
            "upload_time_iso_8601": "2025-08-01T09:33:26.692548Z",
            "url": "https://files.pythonhosted.org/packages/98/52/f09870b7f8c859b900ea13d5e0019ab97cfbf5517b19533c2e7c6e273ab8/mqt_core-3.2.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51d2a69b66fce866c9ddab97317b703841b0c9f8fd07b4b79f893b3a808630c1",
                "md5": "bafff1d03407d5d8ddc92840dfc7616c",
                "sha256": "63c58e683453276525ff0c80c06c99e61fcea0d75b45dfa91c3de81e956201d1"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bafff1d03407d5d8ddc92840dfc7616c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2865043,
            "upload_time": "2025-08-01T09:33:28",
            "upload_time_iso_8601": "2025-08-01T09:33:28.072836Z",
            "url": "https://files.pythonhosted.org/packages/51/d2/a69b66fce866c9ddab97317b703841b0c9f8fd07b4b79f893b3a808630c1/mqt_core-3.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e23e148ff08a15c9abc175131aad03ba0ba4935b582cd9502b5ac90530eee15b",
                "md5": "b0a6e60053829598ffe9e8b037f1ec7f",
                "sha256": "7a0378243f28309dc889dc54efd0ab5c23effa77b1ff23e8056a288c1d5f5452"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b0a6e60053829598ffe9e8b037f1ec7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3612505,
            "upload_time": "2025-08-01T09:33:29",
            "upload_time_iso_8601": "2025-08-01T09:33:29.486232Z",
            "url": "https://files.pythonhosted.org/packages/e2/3e/148ff08a15c9abc175131aad03ba0ba4935b582cd9502b5ac90530eee15b/mqt_core-3.2.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "058b7c3db9f43f56353969365423672d9134fed4fcfacc321b0e928e4fa0f34a",
                "md5": "d3bbcd95a27a3d536fe50379a3ee44e7",
                "sha256": "8a527929c937fda8f0551cde9d4e7c3efc8e79b62d240f648678a85641807406"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3bbcd95a27a3d536fe50379a3ee44e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 3849631,
            "upload_time": "2025-08-01T09:33:30",
            "upload_time_iso_8601": "2025-08-01T09:33:30.930210Z",
            "url": "https://files.pythonhosted.org/packages/05/8b/7c3db9f43f56353969365423672d9134fed4fcfacc321b0e928e4fa0f34a/mqt_core-3.2.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": "ef48eb61b253c0aa217a78148d8c1667e0751e451d1b32692d55efe2546ae6b5",
                "md5": "1503b09c59b919a36b6aaa1fa42c8209",
                "sha256": "3b2167a614baefa5b59d5bb84a33244c09043147867f93345099f88b05f484f7"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1503b09c59b919a36b6aaa1fa42c8209",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2357163,
            "upload_time": "2025-08-01T09:33:32",
            "upload_time_iso_8601": "2025-08-01T09:33:32.526021Z",
            "url": "https://files.pythonhosted.org/packages/ef/48/eb61b253c0aa217a78148d8c1667e0751e451d1b32692d55efe2546ae6b5/mqt_core-3.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "007465799252974d5b19e799820eda6c24f31f7ca005d6bfbbfbe1fcfdefc077",
                "md5": "f96560b227019c459c7c52c736987206",
                "sha256": "fd722617bd534607f4503ce3eedd190effcaa86da92e6f742b4a31cf68c5a41d"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f96560b227019c459c7c52c736987206",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2452244,
            "upload_time": "2025-08-01T09:33:34",
            "upload_time_iso_8601": "2025-08-01T09:33:34.371610Z",
            "url": "https://files.pythonhosted.org/packages/00/74/65799252974d5b19e799820eda6c24f31f7ca005d6bfbbfbe1fcfdefc077/mqt_core-3.2.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86cc7e07ecfa1bc9c526008059d4a75eb066ef4f86c854a69f7841fee4951fc2",
                "md5": "031f2dcf76b403fb279b3b2f5c76339c",
                "sha256": "9429c430b2b9d45c6eca873c20261918e6140ac5c91fd12522ebac44c4b41e37"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "031f2dcf76b403fb279b3b2f5c76339c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3210847,
            "upload_time": "2025-08-01T09:33:36",
            "upload_time_iso_8601": "2025-08-01T09:33:36.000646Z",
            "url": "https://files.pythonhosted.org/packages/86/cc/7e07ecfa1bc9c526008059d4a75eb066ef4f86c854a69f7841fee4951fc2/mqt_core-3.2.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b071b72f4c8cf816db98cde8ee217b58cb3249f40f44f7a6a03d3d23d8614b4d",
                "md5": "d37c4711264d231bca0449998288e1f6",
                "sha256": "0a0d80f9e249f7ebbf2906bec87e0da1307018ab80dc3844ccbf2f11cf4876e8"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d37c4711264d231bca0449998288e1f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2905032,
            "upload_time": "2025-08-01T09:33:37",
            "upload_time_iso_8601": "2025-08-01T09:33:37.594282Z",
            "url": "https://files.pythonhosted.org/packages/b0/71/b72f4c8cf816db98cde8ee217b58cb3249f40f44f7a6a03d3d23d8614b4d/mqt_core-3.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc46858b5da0f27198c6f36b10083f391f912c54f85207c52752bb470e27abec",
                "md5": "f320f57b6588030481352dab5d59fe63",
                "sha256": "20d347a3705ac80901ed28afabe79a7174d8206c4557d8625aeff7eca459707a"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f320f57b6588030481352dab5d59fe63",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3613447,
            "upload_time": "2025-08-01T09:33:39",
            "upload_time_iso_8601": "2025-08-01T09:33:39.321813Z",
            "url": "https://files.pythonhosted.org/packages/dc/46/858b5da0f27198c6f36b10083f391f912c54f85207c52752bb470e27abec/mqt_core-3.2.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57fa44e5ab0a5831b51b1149f86525ba9a7bb40a48bd9f8a1c11f798353c260e",
                "md5": "07602894e79d84f4eb6a293c0395fdde",
                "sha256": "61e1156ee60ef6271a9280e28c5304474a28483484945977d8c55d2eb3f7e77e"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07602894e79d84f4eb6a293c0395fdde",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 3850452,
            "upload_time": "2025-08-01T09:33:41",
            "upload_time_iso_8601": "2025-08-01T09:33:41.231715Z",
            "url": "https://files.pythonhosted.org/packages/57/fa/44e5ab0a5831b51b1149f86525ba9a7bb40a48bd9f8a1c11f798353c260e/mqt_core-3.2.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": "97c656404b659a70bc3032df13b8e9c73dba226b48b3bcb306d0ed8cee86c1df",
                "md5": "0425c37b10619942fd2fe04ac8457b5d",
                "sha256": "e1370a27734000bfa27bc8059d7b2163810700dc229ba1a457981df1e45f1ffc"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0425c37b10619942fd2fe04ac8457b5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2361485,
            "upload_time": "2025-08-01T09:33:42",
            "upload_time_iso_8601": "2025-08-01T09:33:42.933344Z",
            "url": "https://files.pythonhosted.org/packages/97/c6/56404b659a70bc3032df13b8e9c73dba226b48b3bcb306d0ed8cee86c1df/mqt_core-3.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afe5ce204bf71fb66d3bd4d7ba8c5e038307549e23da47be27beb602bc382d45",
                "md5": "2cbe706a8300a1c80b826637b36abd81",
                "sha256": "b4aaebfe61b711bdcd1cbfcd38b770984571a196642b76daa121116df6e0c6ea"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "2cbe706a8300a1c80b826637b36abd81",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2453444,
            "upload_time": "2025-08-01T09:33:44",
            "upload_time_iso_8601": "2025-08-01T09:33:44.547748Z",
            "url": "https://files.pythonhosted.org/packages/af/e5/ce204bf71fb66d3bd4d7ba8c5e038307549e23da47be27beb602bc382d45/mqt_core-3.2.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2ec27afb19f03f5ce4d732c0350802de234784eaa99f8a5f07b1f0590b0e256",
                "md5": "05fe4268ca14a811a913829306dc7e7b",
                "sha256": "eb6f9602b86b2b1fc0320e7e4ec381e3433feddae251b2d2c51c473cb27a5106"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05fe4268ca14a811a913829306dc7e7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3211737,
            "upload_time": "2025-08-01T09:33:46",
            "upload_time_iso_8601": "2025-08-01T09:33:46.115689Z",
            "url": "https://files.pythonhosted.org/packages/f2/ec/27afb19f03f5ce4d732c0350802de234784eaa99f8a5f07b1f0590b0e256/mqt_core-3.2.1-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4138a23b010a788f4ecdf38c7063a8d213377b1b78f16a322c845250adf0fb12",
                "md5": "1ac1b756796b16eea23614e1fb43d6d4",
                "sha256": "b6b2296ed2ff945d658cd62e30b79b2a26b22c84bde5424da2fd74ec65a863c3"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ac1b756796b16eea23614e1fb43d6d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2905167,
            "upload_time": "2025-08-01T09:33:47",
            "upload_time_iso_8601": "2025-08-01T09:33:47.775456Z",
            "url": "https://files.pythonhosted.org/packages/41/38/a23b010a788f4ecdf38c7063a8d213377b1b78f16a322c845250adf0fb12/mqt_core-3.2.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1daa7a7859c449e2a1bed258d88b782d73439b281096e7e4a831195a1068f772",
                "md5": "3523b7ac546a9c84aed89dc26888d136",
                "sha256": "c96667c7a524ad2b97b9d20d87df30364c42d894d9c4d84475011498c983e5b3"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3523b7ac546a9c84aed89dc26888d136",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3613533,
            "upload_time": "2025-08-01T09:33:49",
            "upload_time_iso_8601": "2025-08-01T09:33:49.215993Z",
            "url": "https://files.pythonhosted.org/packages/1d/aa/7a7859c449e2a1bed258d88b782d73439b281096e7e4a831195a1068f772/mqt_core-3.2.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "694c2cef3bc9552ff8a61efc19b93ca951d07959516796914344f7bab283d7d7",
                "md5": "ec763d84d90958f054a2abe439d055a4",
                "sha256": "98db5b675736cde3719daebcaae1d4c69924b576fcbc280e0b46d402bccdbd2e"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec763d84d90958f054a2abe439d055a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3850527,
            "upload_time": "2025-08-01T09:33:50",
            "upload_time_iso_8601": "2025-08-01T09:33:50.827533Z",
            "url": "https://files.pythonhosted.org/packages/69/4c/2cef3bc9552ff8a61efc19b93ca951d07959516796914344f7bab283d7d7/mqt_core-3.2.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": "0dd0c5cb90b16a96dd5431307e6692d29dc406d40d6440b9d17b8d85494910cb",
                "md5": "8ce5a226616ee0a45cc643d0b50da76b",
                "sha256": "e95d067bcab108f2b668d4de8edd762c916cb16c6d0480d34c7d5d773821f85f"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ce5a226616ee0a45cc643d0b50da76b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3234164,
            "upload_time": "2025-08-01T09:33:56",
            "upload_time_iso_8601": "2025-08-01T09:33:56.111722Z",
            "url": "https://files.pythonhosted.org/packages/0d/d0/c5cb90b16a96dd5431307e6692d29dc406d40d6440b9d17b8d85494910cb/mqt_core-3.2.1-cp313-cp313t-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c17b70b817c9216b245adc7290f1302009f2be92c0e23a1c19be2559f9ccf0a",
                "md5": "c29c34db6196a5b1e91646cfefee1fa0",
                "sha256": "0eca075b2760e1c7c78721d6ac1d4161e4cc70fc82a506fe7805da34d6418c88"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c29c34db6196a5b1e91646cfefee1fa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2915745,
            "upload_time": "2025-08-01T09:33:57",
            "upload_time_iso_8601": "2025-08-01T09:33:57.484108Z",
            "url": "https://files.pythonhosted.org/packages/4c/17/b70b817c9216b245adc7290f1302009f2be92c0e23a1c19be2559f9ccf0a/mqt_core-3.2.1-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2587636b2b25c4ddfee06888ff04b496f35e5caa684c49feff199ab36d8cb6d",
                "md5": "8a3725222de1783dcefcb09fafaaa6fa",
                "sha256": "06e921cbb02bbbe83f2b585f1b900922ff6e1206d1d49e8e0e06cceb63549bf9"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a3725222de1783dcefcb09fafaaa6fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3618050,
            "upload_time": "2025-08-01T09:33:59",
            "upload_time_iso_8601": "2025-08-01T09:33:59.200963Z",
            "url": "https://files.pythonhosted.org/packages/d2/58/7636b2b25c4ddfee06888ff04b496f35e5caa684c49feff199ab36d8cb6d/mqt_core-3.2.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f00f30b2476b36da6167d9e3586d1d4fa998f40239deb5fe6f2c5d85b64688c",
                "md5": "4db6b9569d319af006bf8cf6020dc663",
                "sha256": "c3b71444a9fe890ed872bbdf2b47e532d140b38a3f01344653b71f66f4423255"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4db6b9569d319af006bf8cf6020dc663",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 3855563,
            "upload_time": "2025-08-01T09:34:00",
            "upload_time_iso_8601": "2025-08-01T09:34:00.659875Z",
            "url": "https://files.pythonhosted.org/packages/4f/00/f30b2476b36da6167d9e3586d1d4fa998f40239deb5fe6f2c5d85b64688c/mqt_core-3.2.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": "bd9843a4f454dddb5a5629f6f8b13944383e150d06110ce71ea49f924cda9268",
                "md5": "3dc662cea0044aa4b9e41a354dc8ed88",
                "sha256": "e374d821b1a6385ad36f0e1564f4e988dedb0c6e88e16a577447630c97e3b28b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3dc662cea0044aa4b9e41a354dc8ed88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2393936,
            "upload_time": "2025-08-01T09:34:02",
            "upload_time_iso_8601": "2025-08-01T09:34:02.806261Z",
            "url": "https://files.pythonhosted.org/packages/bd/98/43a4f454dddb5a5629f6f8b13944383e150d06110ce71ea49f924cda9268/mqt_core-3.2.1-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7f1ded815aa9b4d7ddea032cd6c1120d9852e712acdcf39f62915fe45f0e6db",
                "md5": "53da090cfe2d5527c2771c31db6dfcaf",
                "sha256": "26d4d300a52ffe7e10f07b9f1d919dfff6423bea4821b6c91ef7dafa4ae9f02d"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "53da090cfe2d5527c2771c31db6dfcaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2469660,
            "upload_time": "2025-08-01T09:34:04",
            "upload_time_iso_8601": "2025-08-01T09:34:04.245064Z",
            "url": "https://files.pythonhosted.org/packages/b7/f1/ded815aa9b4d7ddea032cd6c1120d9852e712acdcf39f62915fe45f0e6db/mqt_core-3.2.1-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a561695def567810d5a4150e34d0574df2a8c2f3b9c47f82a4d92135314d3161",
                "md5": "4cd3fa1ccbda26f750ea8577d58aa2f0",
                "sha256": "d9e21f2129e1d204e78e8b6529224951654ad530941676308b5ac9e494bc772e"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4cd3fa1ccbda26f750ea8577d58aa2f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2361476,
            "upload_time": "2025-08-01T09:33:52",
            "upload_time_iso_8601": "2025-08-01T09:33:52.354303Z",
            "url": "https://files.pythonhosted.org/packages/a5/61/695def567810d5a4150e34d0574df2a8c2f3b9c47f82a4d92135314d3161/mqt_core-3.2.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac9bdcd36b5c129e97105ae81b9d38a5aa13ac597eccf8084d068b98c822ac03",
                "md5": "8c6ad2a66f951a39ba506350b8961098",
                "sha256": "acf6ff108d58c59108df9f259f50104419c25676a10552d5082c350fb4b0dc01"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c6ad2a66f951a39ba506350b8961098",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2453495,
            "upload_time": "2025-08-01T09:33:54",
            "upload_time_iso_8601": "2025-08-01T09:33:54.338261Z",
            "url": "https://files.pythonhosted.org/packages/ac/9b/dcd36b5c129e97105ae81b9d38a5aa13ac597eccf8084d068b98c822ac03/mqt_core-3.2.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "768f5fe436f6ffadccc330676cc41b50456cc1e7fd522874244d070c83839e9a",
                "md5": "612ab5696e8ca3922184459cf45e584c",
                "sha256": "22fb7cd48c5b873cdffe3c952c1dcb96f081a2121b85c9859bab7e368a0060fa"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "612ab5696e8ca3922184459cf45e584c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3209435,
            "upload_time": "2025-08-01T09:34:05",
            "upload_time_iso_8601": "2025-08-01T09:34:05.701601Z",
            "url": "https://files.pythonhosted.org/packages/76/8f/5fe436f6ffadccc330676cc41b50456cc1e7fd522874244d070c83839e9a/mqt_core-3.2.1-cp314-cp314-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c63d2544f99efbba2c30d95293d77f9b9cea6f122811b97bd12140e5b87b28b1",
                "md5": "b71e0d06344bb6057cbfff6a50408c00",
                "sha256": "9008ffb028fb9a54a8e8ef6b123ab0c0179c24b5dc30bac852521a913295999b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b71e0d06344bb6057cbfff6a50408c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2902768,
            "upload_time": "2025-08-01T09:34:07",
            "upload_time_iso_8601": "2025-08-01T09:34:07.150144Z",
            "url": "https://files.pythonhosted.org/packages/c6/3d/2544f99efbba2c30d95293d77f9b9cea6f122811b97bd12140e5b87b28b1/mqt_core-3.2.1-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dd45bb988e85b8b4d8a4274fda614b721b8ad91c446ceb92bb8e523ab2c0092",
                "md5": "59b878a58fec2c306ddc6bbd6b018463",
                "sha256": "4eeac1d33f824d3abf5b66c1d0f3b9fd63da25b61748ede630c36ba4a086d4e7"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "59b878a58fec2c306ddc6bbd6b018463",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3613702,
            "upload_time": "2025-08-01T09:34:08",
            "upload_time_iso_8601": "2025-08-01T09:34:08.964532Z",
            "url": "https://files.pythonhosted.org/packages/2d/d4/5bb988e85b8b4d8a4274fda614b721b8ad91c446ceb92bb8e523ab2c0092/mqt_core-3.2.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba2f48f2b919344a0b952cc79b70a649461b0501c1f1a4d9f0ad5422f0499dd8",
                "md5": "8d91a25f1e82b06c5f6b0facd5c3958a",
                "sha256": "0a3b2bb5777a90dea11e168f3e1e10a5d9c83b2926db00254503c129aa07203a"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d91a25f1e82b06c5f6b0facd5c3958a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3850701,
            "upload_time": "2025-08-01T09:34:10",
            "upload_time_iso_8601": "2025-08-01T09:34:10.373080Z",
            "url": "https://files.pythonhosted.org/packages/ba/2f/48f2b919344a0b952cc79b70a649461b0501c1f1a4d9f0ad5422f0499dd8/mqt_core-3.2.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": "debfc7cd7c01a072dd95283d0dd1853df95c9851091ad170e1815d83e06412b5",
                "md5": "64ca4410e95606c0f8d7f9bc3e23aba5",
                "sha256": "4d9347d2309cf8213d95f7350966f0092ada7cd9c931731cc191388a0276aae0"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64ca4410e95606c0f8d7f9bc3e23aba5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3234205,
            "upload_time": "2025-08-01T09:34:14",
            "upload_time_iso_8601": "2025-08-01T09:34:14.857939Z",
            "url": "https://files.pythonhosted.org/packages/de/bf/c7cd7c01a072dd95283d0dd1853df95c9851091ad170e1815d83e06412b5/mqt_core-3.2.1-cp314-cp314t-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91545671008db86b750297beefcbf820a5d36b65d4f168146b11e3669a74ed0c",
                "md5": "b135a9275a639e04952f07a525aa6d73",
                "sha256": "50d05bf5d34c5cbffca69911778a9a6661f906025225304833cd789b992cc7b3"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b135a9275a639e04952f07a525aa6d73",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2915739,
            "upload_time": "2025-08-01T09:34:16",
            "upload_time_iso_8601": "2025-08-01T09:34:16.246175Z",
            "url": "https://files.pythonhosted.org/packages/91/54/5671008db86b750297beefcbf820a5d36b65d4f168146b11e3669a74ed0c/mqt_core-3.2.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56d6c04b651acedbdbf2ca8276e0965159376668cce38166f943b0bbcf787eb9",
                "md5": "8b627bb13fb24fc20840ef2a7ed23cec",
                "sha256": "0bc891b23b019ed5a1688cf7dd9af4a43c596df225221438bd2d13dcf93b753d"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8b627bb13fb24fc20840ef2a7ed23cec",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3617983,
            "upload_time": "2025-08-01T09:34:17",
            "upload_time_iso_8601": "2025-08-01T09:34:17.693790Z",
            "url": "https://files.pythonhosted.org/packages/56/d6/c04b651acedbdbf2ca8276e0965159376668cce38166f943b0bbcf787eb9/mqt_core-3.2.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "420999819e22fde9563f2a1c0db771a29908b0233fdd7241c15f75aed2139139",
                "md5": "bee62a16f9729a933db0b8f9e56dfbd1",
                "sha256": "c924312dfe8bdab6c5e52834dc040c102495808ca4cbf8f5b200235ba847cdd1"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bee62a16f9729a933db0b8f9e56dfbd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 3855514,
            "upload_time": "2025-08-01T09:34:19",
            "upload_time_iso_8601": "2025-08-01T09:34:19.274117Z",
            "url": "https://files.pythonhosted.org/packages/42/09/99819e22fde9563f2a1c0db771a29908b0233fdd7241c15f75aed2139139/mqt_core-3.2.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": "5158e7344e2f4553ffbc632f65910c4973978ab916c5eba475f32917d5c27e04",
                "md5": "b2ee105f79df65c385616a828dcba8c5",
                "sha256": "1bd2bc31e62c6308136322b7d695569097731130c70205bd43baf931b862458b"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b2ee105f79df65c385616a828dcba8c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2440264,
            "upload_time": "2025-08-01T09:34:21",
            "upload_time_iso_8601": "2025-08-01T09:34:21.161628Z",
            "url": "https://files.pythonhosted.org/packages/51/58/e7344e2f4553ffbc632f65910c4973978ab916c5eba475f32917d5c27e04/mqt_core-3.2.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73760ad56932562fc5332516c7b660e18f95f4f8576164602d768ee41c868e21",
                "md5": "5ef63c5ae16e78eeea6a12e927332ae6",
                "sha256": "bcf9f4012888022a585e33ef841da5a5a1c4b64e93eea48c625f1ae2a0397aa3"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "5ef63c5ae16e78eeea6a12e927332ae6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2509041,
            "upload_time": "2025-08-01T09:34:23",
            "upload_time_iso_8601": "2025-08-01T09:34:23.580801Z",
            "url": "https://files.pythonhosted.org/packages/73/76/0ad56932562fc5332516c7b660e18f95f4f8576164602d768ee41c868e21/mqt_core-3.2.1-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb1666020fca46a65b75057d9762ca2d12e256a93b00c73f037908ecdf0530b2",
                "md5": "9c578ee2f89548bc38237845a5e022f7",
                "sha256": "319248c0a188964dbbac5fe6ed7c317345c39e5ae584296d88ac59935955a313"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c578ee2f89548bc38237845a5e022f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2397423,
            "upload_time": "2025-08-01T09:34:11",
            "upload_time_iso_8601": "2025-08-01T09:34:11.831998Z",
            "url": "https://files.pythonhosted.org/packages/eb/16/66020fca46a65b75057d9762ca2d12e256a93b00c73f037908ecdf0530b2/mqt_core-3.2.1-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "496d75b02775fa872ea481ca43c197719bfb59647d0c5c1e8d495046f04f7107",
                "md5": "d59ebb597cb5e4db1b2f518d8e75b5ee",
                "sha256": "95b09f20a139402f6597ef32c693c2ec5c5315e93c215fc7ceb8499d8702542d"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "d59ebb597cb5e4db1b2f518d8e75b5ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 2494647,
            "upload_time": "2025-08-01T09:34:13",
            "upload_time_iso_8601": "2025-08-01T09:34:13.232255Z",
            "url": "https://files.pythonhosted.org/packages/49/6d/75b02775fa872ea481ca43c197719bfb59647d0c5c1e8d495046f04f7107/mqt_core-3.2.1-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f0160ec51e67495e83887d6387bfb41b16741fca06283d814f9689febc873d3",
                "md5": "0c320b11f27d6424d62e24cde35a511d",
                "sha256": "70ea96e70cf096f45b0ad4acdec7f7b7f390bb53db30109810cb8bc6ffcabb82"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c320b11f27d6424d62e24cde35a511d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3156925,
            "upload_time": "2025-08-01T09:34:24",
            "upload_time_iso_8601": "2025-08-01T09:34:24.994859Z",
            "url": "https://files.pythonhosted.org/packages/6f/01/60ec51e67495e83887d6387bfb41b16741fca06283d814f9689febc873d3/mqt_core-3.2.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c4a13523276906127bf3d72497881258c835a66c7ada58166bff553eb157745",
                "md5": "e2313c235dad96d9682c27691121b2a2",
                "sha256": "4864ba74e9a5557b38658d3a6d157390e4e3e108be47a0511f6782f774a1e963"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2313c235dad96d9682c27691121b2a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2863386,
            "upload_time": "2025-08-01T09:34:26",
            "upload_time_iso_8601": "2025-08-01T09:34:26.791215Z",
            "url": "https://files.pythonhosted.org/packages/5c/4a/13523276906127bf3d72497881258c835a66c7ada58166bff553eb157745/mqt_core-3.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06c45989dda1d2295194cf63a3c209e507de672000943d0774a8eab038aa40fe",
                "md5": "22d8b05f4b7c23991abca0f88dc8243f",
                "sha256": "022cd0ed04faacd121a4501f5e4d6150215a4730c5e9ac6a9bf218baf9674188"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22d8b05f4b7c23991abca0f88dc8243f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3611778,
            "upload_time": "2025-08-01T09:34:28",
            "upload_time_iso_8601": "2025-08-01T09:34:28.658936Z",
            "url": "https://files.pythonhosted.org/packages/06/c4/5989dda1d2295194cf63a3c209e507de672000943d0774a8eab038aa40fe/mqt_core-3.2.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5208812e2b74d8861afe5bd28af850bd838a0edd3b9c2cd88527009bd6da6ab",
                "md5": "8e4549a2d28b239da47bcf0c0722ced0",
                "sha256": "d7ba554830cf9583a9e761a5d3fade24032d500de2b32eb9aa26880ae9fd5dcc"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e4549a2d28b239da47bcf0c0722ced0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 3848746,
            "upload_time": "2025-08-01T09:34:30",
            "upload_time_iso_8601": "2025-08-01T09:34:30.129080Z",
            "url": "https://files.pythonhosted.org/packages/c5/20/8812e2b74d8861afe5bd28af850bd838a0edd3b9c2cd88527009bd6da6ab/mqt_core-3.2.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e74dca439a3b9536e04af947c5bb6dd7db7bc0aeece9b45e322f61b949ed0351",
                "md5": "58d12deaed462782e6d84967f91868e3",
                "sha256": "b4040647c81dd6fd60dc3551bb7d2df3e16ab4a26dcd2b0d9043254baab38dec"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "58d12deaed462782e6d84967f91868e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2356534,
            "upload_time": "2025-08-01T09:34:31",
            "upload_time_iso_8601": "2025-08-01T09:34:31.598989Z",
            "url": "https://files.pythonhosted.org/packages/e7/4d/ca439a3b9536e04af947c5bb6dd7db7bc0aeece9b45e322f61b949ed0351/mqt_core-3.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0c744182daff3af1a9d9d900a30b068aff796d33ae316695f9a6fa4eb241f79",
                "md5": "dda4cc1ecc284603924f92d5461c34a1",
                "sha256": "e632402c15d7619d86ea5bb9397a19a07ea16c9df143c9ebdc38cf90ff880fd1"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "dda4cc1ecc284603924f92d5461c34a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2450857,
            "upload_time": "2025-08-01T09:34:33",
            "upload_time_iso_8601": "2025-08-01T09:34:33.012083Z",
            "url": "https://files.pythonhosted.org/packages/c0/c7/44182daff3af1a9d9d900a30b068aff796d33ae316695f9a6fa4eb241f79/mqt_core-3.2.1-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "939aae281b24049d7020a9970c2d7ffa6374852070caaec71c4cda862fe3d8f5",
                "md5": "a6322d4c24cc82cfdecdac53abec44b9",
                "sha256": "5f6a7c0c393d97eb11c584fc1282dd2a093f3657a4954eb1099b3f8a932d2cec"
            },
            "downloads": -1,
            "filename": "mqt_core-3.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a6322d4c24cc82cfdecdac53abec44b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 505582,
            "upload_time": "2025-08-01T09:34:34",
            "upload_time_iso_8601": "2025-08-01T09:34:34.398343Z",
            "url": "https://files.pythonhosted.org/packages/93/9a/ae281b24049d7020a9970c2d7ffa6374852070caaec71c4cda862fe3d8f5/mqt_core-3.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-01 09:34:34",
    "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: 1.83697s