[](https://pypi.org/project/mqt.core/)

[](https://opensource.org/licenses/MIT)
[](https://doi.org/10.21105/joss.07478)
[](https://github.com/munich-quantum-toolkit/core/actions/workflows/ci.yml)
[](https://github.com/munich-quantum-toolkit/core/actions/workflows/cd.yml)
[](https://mqt.readthedocs.io/projects/core)
[](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/mqt-banner-dark.svg" width="90%">
<img src="https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-banner-light.svg" width="90%" alt="MQT Banner">
</picture>
</a>
</p>
# MQT Core - The Backbone of the Munich Quantum Toolkit (MQT)
MQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) [^1].
To this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.
<p align="center">
<a href="https://mqt.readthedocs.io/projects/core">
<img width=30% src="https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs" alt="Documentation" />
</a>
</p>
If you 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},
}
```
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).
## 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.13.
```console
(.venv) $ pip install mqt.core
```
The following code gives an example on the usage:
```python3
from mqt.core import QuantumComputation
qc = QuantumComputation(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure(range(2), range(2))
print(qc)
```
**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**
## System Requirements
Building (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).
However, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.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.
[^1]: The _[Munich Quantum Toolkit (MQT)](https://mqt.readthedocs.io)_ is a collection of software tools for quantum computing developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/) as well as 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.
---
## 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/d4/6d/b159fc8a58128bacd7b32dfbdd031ef5d4d973bc19c357dddb7572474841/mqt_core-3.0.2.tar.gz",
"platform": null,
"description": "[](https://pypi.org/project/mqt.core/)\n\n[](https://opensource.org/licenses/MIT)\n[](https://doi.org/10.21105/joss.07478)\n[](https://github.com/munich-quantum-toolkit/core/actions/workflows/ci.yml)\n[](https://github.com/munich-quantum-toolkit/core/actions/workflows/cd.yml)\n[](https://mqt.readthedocs.io/projects/core)\n[](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/mqt-banner-dark.svg\" width=\"90%\">\n <img src=\"https://raw.githubusercontent.com/munich-quantum-toolkit/.github/refs/heads/main/docs/_static/mqt-banner-light.svg\" width=\"90%\" alt=\"MQT Banner\">\n </picture>\n </a>\n</p>\n\n# MQT Core - The Backbone of the Munich Quantum Toolkit (MQT)\n\nMQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) [^1].\nTo this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.\n\n<p align=\"center\">\n <a href=\"https://mqt.readthedocs.io/projects/core\">\n <img width=30% src=\"https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs\" alt=\"Documentation\" />\n </a>\n</p>\n\nIf you 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\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## 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.13.\n\n```console\n(.venv) $ pip install mqt.core\n```\n\nThe following code gives an example on the usage:\n\n```python3\nfrom mqt.core import QuantumComputation\n\nqc = QuantumComputation(2, 2)\nqc.h(0)\nqc.cx(0, 1)\nqc.measure(range(2), range(2))\n\nprint(qc)\n```\n\n**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**\n\n## System Requirements\n\nBuilding (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).\nHowever, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.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[^1]: The _[Munich Quantum Toolkit (MQT)](https://mqt.readthedocs.io)_ is a collection of software tools for quantum computing developed by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/) as well as 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.\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.0.2",
"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": "5400d1c04e2b96c1511d03fdc27441e195ef06a148df247e30e14ead4616fc6b",
"md5": "d1b5f9698e3a2165b56b3e74dc9ce795",
"sha256": "1d0f67eac0d09512998965f18474e078c9bf6a332ba4745e6951bd78a90e3808"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "d1b5f9698e3a2165b56b3e74dc9ce795",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3258381,
"upload_time": "2025-04-07T15:08:28",
"upload_time_iso_8601": "2025-04-07T15:08:28.915818Z",
"url": "https://files.pythonhosted.org/packages/54/00/d1c04e2b96c1511d03fdc27441e195ef06a148df247e30e14ead4616fc6b/mqt_core-3.0.2-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0cf7e4d625701ea14d51bd11528fc74e0ad42d1ef8d221c6fa4765270db6efc",
"md5": "290c03163f70566f5aa4434047fef7fa",
"sha256": "dc19d246814ca992eb112f046bdea032a7948e9d1871160f594274cb893e56a1"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "290c03163f70566f5aa4434047fef7fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2977927,
"upload_time": "2025-04-07T15:08:30",
"upload_time_iso_8601": "2025-04-07T15:08:30.918998Z",
"url": "https://files.pythonhosted.org/packages/f0/cf/7e4d625701ea14d51bd11528fc74e0ad42d1ef8d221c6fa4765270db6efc/mqt_core-3.0.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3aee32f7a9f956c3b14b3a073ee06df9926d8b3f9c911631cbcaa98653250363",
"md5": "f16797554d9db002dc5459aa839d72f5",
"sha256": "98f8fd226b093902d708caa8f9d9c3f0c08f689eaca0109f2419db4cad6dd0b6"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "f16797554d9db002dc5459aa839d72f5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3580861,
"upload_time": "2025-04-07T15:08:32",
"upload_time_iso_8601": "2025-04-07T15:08:32.627178Z",
"url": "https://files.pythonhosted.org/packages/3a/ee/32f7a9f956c3b14b3a073ee06df9926d8b3f9c911631cbcaa98653250363/mqt_core-3.0.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d41a3c7ab3b555b0a9ba2b5102179d97272d59608fc857865d87439a4df5119a",
"md5": "74edba1b3d112179caa806d00b441e66",
"sha256": "2fedfe859d61ab88432b6f248f6041ff4c1b49f04ebbb6ac11a6dc5762e2a468"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "74edba1b3d112179caa806d00b441e66",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3795228,
"upload_time": "2025-04-07T15:08:34",
"upload_time_iso_8601": "2025-04-07T15:08:34.951402Z",
"url": "https://files.pythonhosted.org/packages/d4/1a/3c7ab3b555b0a9ba2b5102179d97272d59608fc857865d87439a4df5119a/mqt_core-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50dea8acbb959aba75f5b4838cdd606afd8edcd7e4d3c220fe614af8f46aabc6",
"md5": "12d0acdac3308f8da904c023c9fec2e2",
"sha256": "cbd2bcfef443faa1ff52b384e3e480de01a7e638af11a76a5f8dd80b9049b952"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "12d0acdac3308f8da904c023c9fec2e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 4589258,
"upload_time": "2025-04-07T15:08:37",
"upload_time_iso_8601": "2025-04-07T15:08:37.714631Z",
"url": "https://files.pythonhosted.org/packages/50/de/a8acbb959aba75f5b4838cdd606afd8edcd7e4d3c220fe614af8f46aabc6/mqt_core-3.0.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9300c57483b1f5788f0f2a56f34be48ec9b0b8988bb75b189de64111dcb39e4f",
"md5": "429a3c553531056ff5c4efca1f668f44",
"sha256": "b151c108ad0f74387ee3a4680edbb10e3961573d887cd24769b4161e83794976"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "429a3c553531056ff5c4efca1f668f44",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3260250,
"upload_time": "2025-04-07T15:08:39",
"upload_time_iso_8601": "2025-04-07T15:08:39.376063Z",
"url": "https://files.pythonhosted.org/packages/93/00/c57483b1f5788f0f2a56f34be48ec9b0b8988bb75b189de64111dcb39e4f/mqt_core-3.0.2-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "846d57f2eec98f8d8146f08880d006a1acdd87bda855b731a4c4c5935a5711ff",
"md5": "53745c4baa01ff3f08872d679d469039",
"sha256": "0d6dadfbe7e6e2137773f7426d251b7bcbe516cf6964e634a2d9057ce078870a"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "53745c4baa01ff3f08872d679d469039",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2979581,
"upload_time": "2025-04-07T15:08:41",
"upload_time_iso_8601": "2025-04-07T15:08:41.105163Z",
"url": "https://files.pythonhosted.org/packages/84/6d/57f2eec98f8d8146f08880d006a1acdd87bda855b731a4c4c5935a5711ff/mqt_core-3.0.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30b789ef61b2b2d4af9780ea12bf7084b19515dd8255522f92dad56dbc2fe2d4",
"md5": "6c56f62718f4fa17b5bd6de2f3165bba",
"sha256": "342a2e6ed04e077aa713449474e3df131cddb22b5d6f333672a60fc90f0a88db"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6c56f62718f4fa17b5bd6de2f3165bba",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3581871,
"upload_time": "2025-04-07T15:08:42",
"upload_time_iso_8601": "2025-04-07T15:08:42.666991Z",
"url": "https://files.pythonhosted.org/packages/30/b7/89ef61b2b2d4af9780ea12bf7084b19515dd8255522f92dad56dbc2fe2d4/mqt_core-3.0.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7728a95946b44ad70e366fa9cf089816fc92a04b3c67f3f3ae5acc2b27cd5431",
"md5": "4b3e46421fbb6283b78f124ff56a7553",
"sha256": "19a1b387f3f11324b1183481271f97eb53cdbac169e3bbee40bac717dd9b026f"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4b3e46421fbb6283b78f124ff56a7553",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3796425,
"upload_time": "2025-04-07T15:08:44",
"upload_time_iso_8601": "2025-04-07T15:08:44.361432Z",
"url": "https://files.pythonhosted.org/packages/77/28/a95946b44ad70e366fa9cf089816fc92a04b3c67f3f3ae5acc2b27cd5431/mqt_core-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14f16a34767238b47ebec52c346fa66e5f24b9849b72259baa364ad421ef83ca",
"md5": "d41ed6f57ce1c730f3f51f5e1f0d230b",
"sha256": "5bbe837393e7856a01572d0795d6eb015896ac454b3bb87d821e79f4fa872d57"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d41ed6f57ce1c730f3f51f5e1f0d230b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 4590596,
"upload_time": "2025-04-07T15:08:46",
"upload_time_iso_8601": "2025-04-07T15:08:46.102316Z",
"url": "https://files.pythonhosted.org/packages/14/f1/6a34767238b47ebec52c346fa66e5f24b9849b72259baa364ad421ef83ca/mqt_core-3.0.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "987ab5c17a298e36f61a3f64e21e02bd8738bd8ec0459856858a26a39f686a4d",
"md5": "467ee457f48e797e43fcccc48d715ab4",
"sha256": "141e5bf260ee021107e9148a5219dd939ee338a62ab63f577bf63b495928bb38"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "467ee457f48e797e43fcccc48d715ab4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3305712,
"upload_time": "2025-04-07T15:08:48",
"upload_time_iso_8601": "2025-04-07T15:08:48.093398Z",
"url": "https://files.pythonhosted.org/packages/98/7a/b5c17a298e36f61a3f64e21e02bd8738bd8ec0459856858a26a39f686a4d/mqt_core-3.0.2-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ee61f503729bc939463f4b5f25ff859ef7164f3245882dbb85ce50aefd2732e9",
"md5": "24c43c8b24251ce349150d6fc0fa0948",
"sha256": "43156293b1fb1f00ebc135799afd524b6975933c521a5b89d6de10d754ef3018"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "24c43c8b24251ce349150d6fc0fa0948",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3018830,
"upload_time": "2025-04-07T15:08:50",
"upload_time_iso_8601": "2025-04-07T15:08:50.347030Z",
"url": "https://files.pythonhosted.org/packages/ee/61/f503729bc939463f4b5f25ff859ef7164f3245882dbb85ce50aefd2732e9/mqt_core-3.0.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9c73df0e423426759dce7706a321478fdf8d9186c610b2b105a27c5d2062514",
"md5": "aa7999e9645caaa3276c6dbbeb4f724f",
"sha256": "f77ed40a947a33f138a708209006318ee3f031035ae968a91e175aea7f225d4a"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "aa7999e9645caaa3276c6dbbeb4f724f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3581601,
"upload_time": "2025-04-07T15:08:52",
"upload_time_iso_8601": "2025-04-07T15:08:52.084811Z",
"url": "https://files.pythonhosted.org/packages/d9/c7/3df0e423426759dce7706a321478fdf8d9186c610b2b105a27c5d2062514/mqt_core-3.0.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "209162d262cc66075a852126f818f3c978a63d87f0cd9bdc54261fd31686ebc8",
"md5": "d784e20b0935d529e5dfeb98ff3770ed",
"sha256": "9119ef0e9a408067980ab0c94eae092a08a5d194ce4345e6e63e69bd6be07f21"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d784e20b0935d529e5dfeb98ff3770ed",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3796312,
"upload_time": "2025-04-07T15:08:54",
"upload_time_iso_8601": "2025-04-07T15:08:54.355468Z",
"url": "https://files.pythonhosted.org/packages/20/91/62d262cc66075a852126f818f3c978a63d87f0cd9bdc54261fd31686ebc8/mqt_core-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b18921fc214fb65354efac7e2897bce721cc4b6ae2278e6eb83ba9a4ed5d41b1",
"md5": "727f60696541a7cb477f6dbe840ff855",
"sha256": "43c1052cea25645ec87ddf2536f3c96618136387b2752e0cb7782c46632d74d7"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "727f60696541a7cb477f6dbe840ff855",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 4591466,
"upload_time": "2025-04-07T15:08:56",
"upload_time_iso_8601": "2025-04-07T15:08:56.636130Z",
"url": "https://files.pythonhosted.org/packages/b1/89/21fc214fb65354efac7e2897bce721cc4b6ae2278e6eb83ba9a4ed5d41b1/mqt_core-3.0.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d90b9bf3a651018e1b1c895bf33a685213126b0025212f9ee540d2d5392d9b4c",
"md5": "f9795435e2f838a432e1b7448ed45e78",
"sha256": "d0b76ff51dfcdb11ad1515743bc0264f1660ae965e10b9158cacd37266e86743"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "f9795435e2f838a432e1b7448ed45e78",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3305442,
"upload_time": "2025-04-07T15:08:58",
"upload_time_iso_8601": "2025-04-07T15:08:58.661965Z",
"url": "https://files.pythonhosted.org/packages/d9/0b/9bf3a651018e1b1c895bf33a685213126b0025212f9ee540d2d5392d9b4c/mqt_core-3.0.2-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6dd4f6450baaa75fedc86cd57857b91ecbff5c706d6fddbc6cfcd8cf44f03e2",
"md5": "83887d59d4c036f3f105f8522ad358bc",
"sha256": "9e871d53b631de32f2a69e01977ebddccab0e8ee6bd3d73872cc936a8d503584"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "83887d59d4c036f3f105f8522ad358bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3018938,
"upload_time": "2025-04-07T15:09:00",
"upload_time_iso_8601": "2025-04-07T15:09:00.449158Z",
"url": "https://files.pythonhosted.org/packages/a6/dd/4f6450baaa75fedc86cd57857b91ecbff5c706d6fddbc6cfcd8cf44f03e2/mqt_core-3.0.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c41fbfa8d7816c7f595b000d1e68b4fb42961bcc0f52be126c83455bfcfeb58",
"md5": "a46cc99934c2529981dfa20d3b72eb6f",
"sha256": "e567d9d167c6f5c3031c5c68335257af76a85e3fe7d61644be4ab8e2e2a520ee"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a46cc99934c2529981dfa20d3b72eb6f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3581663,
"upload_time": "2025-04-07T15:09:02",
"upload_time_iso_8601": "2025-04-07T15:09:02.634921Z",
"url": "https://files.pythonhosted.org/packages/5c/41/fbfa8d7816c7f595b000d1e68b4fb42961bcc0f52be126c83455bfcfeb58/mqt_core-3.0.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9142f46493887d743affc761500a8810418ca64656c914182486c9b3d129339",
"md5": "0b589175b0fd5329accb8f2d84ee5e69",
"sha256": "848271ac39189f9fb483048a714442135754c274c78c51f988c713e624466115"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0b589175b0fd5329accb8f2d84ee5e69",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3796383,
"upload_time": "2025-04-07T15:09:04",
"upload_time_iso_8601": "2025-04-07T15:09:04.339823Z",
"url": "https://files.pythonhosted.org/packages/a9/14/2f46493887d743affc761500a8810418ca64656c914182486c9b3d129339/mqt_core-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6de1d76d8833a2a7ea4d60fe6f3bc7b4a23d86dbe1cedf0735bbeee5dc97b8c1",
"md5": "0dab70295fc5e46cb6e70f58375feba7",
"sha256": "cd64ea2ae65b21eea0e1149eb6b12907d7078a72d2265416315f077e0c82beb2"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313t-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "0dab70295fc5e46cb6e70f58375feba7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3326819,
"upload_time": "2025-04-07T15:09:07",
"upload_time_iso_8601": "2025-04-07T15:09:07.621721Z",
"url": "https://files.pythonhosted.org/packages/6d/e1/d76d8833a2a7ea4d60fe6f3bc7b4a23d86dbe1cedf0735bbeee5dc97b8c1/mqt_core-3.0.2-cp313-cp313t-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13eb7a03e4c0b67d056598df21e23d9c26e5f9a80f96df0e636959c9a1e45ab5",
"md5": "14143ace35a1da2504e2b16abc8bcab5",
"sha256": "05d2770f602f0d8061ef0b149ee389dc79d35d00b79e2fee6e1eb56fc87e94ff"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "14143ace35a1da2504e2b16abc8bcab5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3029070,
"upload_time": "2025-04-07T15:09:09",
"upload_time_iso_8601": "2025-04-07T15:09:09.743562Z",
"url": "https://files.pythonhosted.org/packages/13/eb/7a03e4c0b67d056598df21e23d9c26e5f9a80f96df0e636959c9a1e45ab5/mqt_core-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c96dc3ea298ddea3899eefe13a6b4f0b1caf8d9faa9170f4f1cd41ef7187ad8",
"md5": "8b13e6f1ab050f446a13316cad10eeca",
"sha256": "0ef98a59075e9ac92a6f78587975b0470306fc5445f3b199cfbedffde19af1af"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "8b13e6f1ab050f446a13316cad10eeca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3586116,
"upload_time": "2025-04-07T15:09:11",
"upload_time_iso_8601": "2025-04-07T15:09:11.554276Z",
"url": "https://files.pythonhosted.org/packages/4c/96/dc3ea298ddea3899eefe13a6b4f0b1caf8d9faa9170f4f1cd41ef7187ad8/mqt_core-3.0.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a8dee464752a7448f28c0b34136c57e667abfeab1b7219fb15f124e952876b4",
"md5": "16108e410dc16fe46d03883a4face846",
"sha256": "6655f6e066e0115affb648ee9600f13088eb4e58ac52ab45ce6c817c0e85618e"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "16108e410dc16fe46d03883a4face846",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3800729,
"upload_time": "2025-04-07T15:09:15",
"upload_time_iso_8601": "2025-04-07T15:09:15.061764Z",
"url": "https://files.pythonhosted.org/packages/0a/8d/ee464752a7448f28c0b34136c57e667abfeab1b7219fb15f124e952876b4/mqt_core-3.0.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de8fa3b9bee4fdb6bd407b8b9867bff8a82d58b5f146739a5e145cc3c34a7ab8",
"md5": "f9b1f79d9a3694c6ef8efc01c403b061",
"sha256": "a1b58b885387ee287365e1731ab01cf1106cec76656f10c390f69ec3c3c67cff"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "f9b1f79d9a3694c6ef8efc01c403b061",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 4628098,
"upload_time": "2025-04-07T15:09:17",
"upload_time_iso_8601": "2025-04-07T15:09:17.458938Z",
"url": "https://files.pythonhosted.org/packages/de/8f/a3b9bee4fdb6bd407b8b9867bff8a82d58b5f146739a5e145cc3c34a7ab8/mqt_core-3.0.2-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc2cfbc5f6878a775a1d26ce956d3072f90555970d8fe096d63abf783ec75d8e",
"md5": "5860b0b6e72c933e19dea2c9034e7611",
"sha256": "b5dd9a07f6f26754cec97e4cff9a0f14f5f73be2fc996a2cb01099c4b777cabe"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "5860b0b6e72c933e19dea2c9034e7611",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 4591506,
"upload_time": "2025-04-07T15:09:06",
"upload_time_iso_8601": "2025-04-07T15:09:06.010040Z",
"url": "https://files.pythonhosted.org/packages/dc/2c/fbc5f6878a775a1d26ce956d3072f90555970d8fe096d63abf783ec75d8e/mqt_core-3.0.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e44141be50f3bbd9435ee7758f57045cf81009a06402d356334374616ca266b",
"md5": "899bb10e6b296d5c6a361e4958e0f614",
"sha256": "e0f6775b279a010ceb88870e6d94f6bb8b689468e7446636832379cb3f792d66"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "899bb10e6b296d5c6a361e4958e0f614",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3258632,
"upload_time": "2025-04-07T15:09:19",
"upload_time_iso_8601": "2025-04-07T15:09:19.157160Z",
"url": "https://files.pythonhosted.org/packages/1e/44/141be50f3bbd9435ee7758f57045cf81009a06402d356334374616ca266b/mqt_core-3.0.2-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a4e2f0bd39d3622cb3645ae75616fc6d34b3438178a49b3eb15aba886c7568d",
"md5": "52817aa59de9765734837c6cd738361f",
"sha256": "e06e0582e85cb04209e80d3d0ecba0a129a06dd99be462e5b04622080f4f8e59"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "52817aa59de9765734837c6cd738361f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2978029,
"upload_time": "2025-04-07T15:09:21",
"upload_time_iso_8601": "2025-04-07T15:09:21.044706Z",
"url": "https://files.pythonhosted.org/packages/8a/4e/2f0bd39d3622cb3645ae75616fc6d34b3438178a49b3eb15aba886c7568d/mqt_core-3.0.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46ac45bc6aa2be46ddcca781f1aaaa7fcc94282b67f533c18d1c5e8b21943e8e",
"md5": "1e909b865251f2f7a68f92f944a91b88",
"sha256": "b0d8aa071de188848b6baa4c0e133afd29a1d24bd2162c4e8ceb558f01b61f26"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "1e909b865251f2f7a68f92f944a91b88",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3581166,
"upload_time": "2025-04-07T15:09:23",
"upload_time_iso_8601": "2025-04-07T15:09:23.118522Z",
"url": "https://files.pythonhosted.org/packages/46/ac/45bc6aa2be46ddcca781f1aaaa7fcc94282b67f533c18d1c5e8b21943e8e/mqt_core-3.0.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98c2befa51244d88ee58704fb458b9c5b06b1681a45d2e521d2caa1068998bd8",
"md5": "d6af1fc86cff791ac37f27f1393dea06",
"sha256": "2ba1b41bff00886c839675c7d4251a9d11195c76f02ac43646736dccc3c585a0"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d6af1fc86cff791ac37f27f1393dea06",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3795436,
"upload_time": "2025-04-07T15:09:24",
"upload_time_iso_8601": "2025-04-07T15:09:24.810581Z",
"url": "https://files.pythonhosted.org/packages/98/c2/befa51244d88ee58704fb458b9c5b06b1681a45d2e521d2caa1068998bd8/mqt_core-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9971aaafc04c03467d078188e6a3552224180ad941df86b62026ccdf5bb2bf00",
"md5": "7d1ea9a04ac99d150fd95c331117111d",
"sha256": "a4d3db1f84fb31d12bd7e4f4dae76dda1b7ef72d07587a85fe041839a87f7964"
},
"downloads": -1,
"filename": "mqt_core-3.0.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "7d1ea9a04ac99d150fd95c331117111d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 4590053,
"upload_time": "2025-04-07T15:09:26",
"upload_time_iso_8601": "2025-04-07T15:09:26.495084Z",
"url": "https://files.pythonhosted.org/packages/99/71/aaafc04c03467d078188e6a3552224180ad941df86b62026ccdf5bb2bf00/mqt_core-3.0.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d46db159fc8a58128bacd7b32dfbdd031ef5d4d973bc19c357dddb7572474841",
"md5": "bfaa4e65f5b3149d823f80c64ba6d6fc",
"sha256": "0fe3e2d1807cb09f04bd72325e3adb0734a0f3b2532f8df0d66b247682482ba3"
},
"downloads": -1,
"filename": "mqt_core-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "bfaa4e65f5b3149d823f80c64ba6d6fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 454191,
"upload_time": "2025-04-07T15:09:27",
"upload_time_iso_8601": "2025-04-07T15:09:27.948696Z",
"url": "https://files.pythonhosted.org/packages/d4/6d/b159fc8a58128bacd7b32dfbdd031ef5d4d973bc19c357dddb7572474841/mqt_core-3.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-04-07 15:09:27",
"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"
}