Name | mqt-debugger JSON |
Version |
1.0.1
JSON |
| download |
home_page | None |
Summary | A quantum circuit debugging tool |
upload_time | 2024-12-11 16:34:25 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License Copyright (c) 2024 Chair for Design Automation, Technical University of Munich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
mqt
quantum-computing
design-automation
decision-diagrams
debugging
|
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.debugger?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.debugger/)
![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-debugger/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-debugger/actions/workflows/ci.yml)
[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-debugger/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-debugger/actions/workflows/cd.yml)
[![Documentation](https://img.shields.io/readthedocs/debugger?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/debugger)
[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-debugger?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-debugger)
<p align="center">
<a href="https://mqt.readthedocs.io">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_light.png" width="60%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_dark.png" width="60%">
</picture>
</a>
</p>
# MQT Debugger - A Quantum Circuit Debugging Tool
A tool for debugging quantum circuits developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
It proposes an interface for the simulation of circuits and diagnosis of errors and provides a base implementation built upon [MQT Core](https://github.com/cda-tum/mqt-core), which forms the backbone of the MQT.
It also provides a Debugger Adapter Protocol (DAP) server that can be used to integrate the debugger into IDEs.
<p align="center">
<a href="https://mqt.readthedocs.io/projects/debugger">
<img width=30% src="https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs" alt="Documentation" />
</a>
</p>
If you have any questions, feel free to contact us via [quantum.cda@xcit.tum.de](mailto:quantum.cda@xcit.tum.de) or by creating an issue on [GitHub](https://github.com/cda-tum/mqt-debugger/issues).
## Getting Started
MQT Debugger is available via [PyPI](https://pypi.org/project/mqt.debugger/) for Linux, macOS, and Windows and supports Python 3.8 to 3.12.
```console
(venv) $ pip install mqt.debugger
```
The following code gives an example on the usage:
```python3
from mqt import debugger
state = debugger.create_ddsim_simulation_state()
with open("code.qasm", "r") as f:
state.load_code(f.read())
f.run_simulation()
print(f.get_state_vector_full())
```
**Detailed documentation on all available methods, options, and input formats is available at [ReadTheDocs](https://mqt.readthedocs.io/projects/debugger).**
## System Requirements and Building
The implementation is compatible with any C++20 compiler, a minimum CMake version of 3.19, and Python 3.8+.
Please refer to the [documentation](https://mqt.readthedocs.io/projects/debugger) on how to build the project.
Building (and running) is continuously tested under Linux, macOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/virtual-environments).
## References
MQT Debugger has been developed based on methods proposed in a scientific paper that has not been released yet.
## Acknowledgements
The Munich Quantum Toolkit has been supported by the European
Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement
No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the
Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_dark.svg" width="28%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_light.svg" width="28%" alt="TUM Logo">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-bavaria.svg" width="16%" alt="Coat of Arms of Bavaria">
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_dark.svg" width="24%">
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_light.svg" width="24%" alt="ERC Logo">
</picture>
<picture>
<img src="https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-mqv.svg" width="28%" alt="MQV Logo">
</picture>
</p>
Raw data
{
"_id": null,
"home_page": null,
"name": "mqt-debugger",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "MQT, quantum-computing, design-automation, decision-diagrams, debugging",
"author": null,
"author_email": "Damian Rovara <damian.rovara@tum.de>, Lukas Burgholzer <burgholzer@me.com>",
"download_url": "https://files.pythonhosted.org/packages/aa/7d/b7e039956e73c24caaa609a8d354ec1f7cd325b317e5bcc308ce8513c2d6/mqt_debugger-1.0.1.tar.gz",
"platform": null,
"description": "[![PyPI](https://img.shields.io/pypi/v/mqt.debugger?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.debugger/)\n![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)\n[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-debugger/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-debugger/actions/workflows/ci.yml)\n[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-debugger/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-debugger/actions/workflows/cd.yml)\n[![Documentation](https://img.shields.io/readthedocs/debugger?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/debugger)\n[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-debugger?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-debugger)\n\n<p align=\"center\">\n <a href=\"https://mqt.readthedocs.io\">\n <picture>\n <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_light.png\" width=\"60%\">\n <img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/mqt_dark.png\" width=\"60%\">\n </picture>\n </a>\n</p>\n\n# MQT Debugger - A Quantum Circuit Debugging Tool\n\nA tool for debugging quantum circuits developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).\nIt proposes an interface for the simulation of circuits and diagnosis of errors and provides a base implementation built upon [MQT Core](https://github.com/cda-tum/mqt-core), which forms the backbone of the MQT.\nIt also provides a Debugger Adapter Protocol (DAP) server that can be used to integrate the debugger into IDEs.\n\n<p align=\"center\">\n <a href=\"https://mqt.readthedocs.io/projects/debugger\">\n <img width=30% src=\"https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs\" alt=\"Documentation\" />\n </a>\n</p>\n\nIf you have any questions, feel free to contact us via [quantum.cda@xcit.tum.de](mailto:quantum.cda@xcit.tum.de) or by creating an issue on [GitHub](https://github.com/cda-tum/mqt-debugger/issues).\n\n## Getting Started\n\nMQT Debugger is available via [PyPI](https://pypi.org/project/mqt.debugger/) for Linux, macOS, and Windows and supports Python 3.8 to 3.12.\n\n```console\n(venv) $ pip install mqt.debugger\n```\n\nThe following code gives an example on the usage:\n\n```python3\nfrom mqt import debugger\n\nstate = debugger.create_ddsim_simulation_state()\nwith open(\"code.qasm\", \"r\") as f:\n state.load_code(f.read())\nf.run_simulation()\nprint(f.get_state_vector_full())\n```\n\n**Detailed documentation on all available methods, options, and input formats is available at [ReadTheDocs](https://mqt.readthedocs.io/projects/debugger).**\n\n## System Requirements and Building\n\nThe implementation is compatible with any C++20 compiler, a minimum CMake version of 3.19, and Python 3.8+.\nPlease refer to the [documentation](https://mqt.readthedocs.io/projects/debugger) on how to build the project.\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/virtual-environments).\n\n## References\n\nMQT Debugger has been developed based on methods proposed in a scientific paper that has not been released yet.\n\n## Acknowledgements\n\nThe Munich Quantum Toolkit has been supported by the European\nResearch Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement\nNo. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the\nMunich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.\n\n<p align=\"center\">\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_dark.svg\" width=\"28%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/tum_light.svg\" width=\"28%\" alt=\"TUM Logo\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-bavaria.svg\" width=\"16%\" alt=\"Coat of Arms of Bavaria\">\n</picture>\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_dark.svg\" width=\"24%\">\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/erc_light.svg\" width=\"24%\" alt=\"ERC Logo\">\n</picture>\n<picture>\n<img src=\"https://raw.githubusercontent.com/cda-tum/mqt/main/docs/_static/logo-mqv.svg\" width=\"28%\" alt=\"MQV Logo\">\n</picture>\n</p>\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Chair for Design Automation, Technical University of Munich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "A quantum circuit debugging tool",
"version": "1.0.1",
"project_urls": {
"Discussions": "https://github.com/cda-tum/mqt-debugger/discussions",
"Documentation": "https://mqt.readthedocs.io/projects/debugger",
"Homepage": "https://github.com/cda-tum/mqt-debugger",
"Issues": "https://github.com/cda-tum/mqt-debugger/issues"
},
"split_keywords": [
"mqt",
" quantum-computing",
" design-automation",
" decision-diagrams",
" debugging"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "18f7831accae033b654a2b42f29766bd0c3831665525441effd79239a3b6f4e7",
"md5": "792b0e4f90acf58e80f0c20a2f643980",
"sha256": "ff5ce335e5fd7b7901e4c915c0c4b4691445e097b993f0a0ef0a145beda8c2c9"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "792b0e4f90acf58e80f0c20a2f643980",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 539663,
"upload_time": "2024-12-11T16:32:58",
"upload_time_iso_8601": "2024-12-11T16:32:58.272430Z",
"url": "https://files.pythonhosted.org/packages/18/f7/831accae033b654a2b42f29766bd0c3831665525441effd79239a3b6f4e7/mqt_debugger-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6669459380b82ec0656d0381419078af80c9e436b21c25091ee0bb270ae6a897",
"md5": "0a9084e56fecd858f8219bd4ca2400b6",
"sha256": "6e2a656c76563ce14a247a8c45e0e4e6e9c562a68ad6c2ea170a9c5f6cb8740d"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0a9084e56fecd858f8219bd4ca2400b6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 509011,
"upload_time": "2024-12-11T16:33:01",
"upload_time_iso_8601": "2024-12-11T16:33:01.307748Z",
"url": "https://files.pythonhosted.org/packages/66/69/459380b82ec0656d0381419078af80c9e436b21c25091ee0bb270ae6a897/mqt_debugger-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c203ee3daa64c8e2db09ff835fdbbb4937ee7092e11988ea13d41bba8b9d0f4",
"md5": "fa44d03512c389b00054c543026494fa",
"sha256": "9150321abd061218eafe5e13cbd54ea6476af998254d3209a4300d8bb9629161"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fa44d03512c389b00054c543026494fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 778449,
"upload_time": "2024-12-11T16:33:02",
"upload_time_iso_8601": "2024-12-11T16:33:02.984574Z",
"url": "https://files.pythonhosted.org/packages/7c/20/3ee3daa64c8e2db09ff835fdbbb4937ee7092e11988ea13d41bba8b9d0f4/mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "420d4ecd34ed0dce99fddc01554532025afd95466dc2a3dbf16f9ea2504d4bf5",
"md5": "c3833c840693bb451387227707fb3034",
"sha256": "52b2073d8fa8eb6694ea09a2a11b25236f752c6e6e17b63814882ae2ae03bebc"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c3833c840693bb451387227707fb3034",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 930096,
"upload_time": "2024-12-11T16:33:06",
"upload_time_iso_8601": "2024-12-11T16:33:06.520840Z",
"url": "https://files.pythonhosted.org/packages/42/0d/4ecd34ed0dce99fddc01554532025afd95466dc2a3dbf16f9ea2504d4bf5/mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d26e71a7dfbf4958df04d77c242c068430858a66c086d88304eaaefe618cfa43",
"md5": "245e8b0c8c31a3f32e1468a40ddc1692",
"sha256": "ba72ec5bbb5b8ab2c2efd8cd6c2703cc6a988d8afecbf986cda7e13b2c197b02"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "245e8b0c8c31a3f32e1468a40ddc1692",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 791748,
"upload_time": "2024-12-11T16:33:08",
"upload_time_iso_8601": "2024-12-11T16:33:08.404863Z",
"url": "https://files.pythonhosted.org/packages/d2/6e/71a7dfbf4958df04d77c242c068430858a66c086d88304eaaefe618cfa43/mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b716aac83da955282f8b0b462452b22df835bce659ea5fe933f1284c00af4078",
"md5": "f76ac382f9670dbe620c42c796c133e9",
"sha256": "20963fb0dc70fc9b0988408ae47db731bf5851cff6301b3e67355ac4cf400ab2"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f76ac382f9670dbe620c42c796c133e9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 812700,
"upload_time": "2024-12-11T16:33:11",
"upload_time_iso_8601": "2024-12-11T16:33:11.348978Z",
"url": "https://files.pythonhosted.org/packages/b7/16/aac83da955282f8b0b462452b22df835bce659ea5fe933f1284c00af4078/mqt_debugger-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d252c806b230cf3c472ae888f30e7628c0d23833127dd6462c755f7b9c7f464a",
"md5": "ad7c491548b6e7946108ca122c2125b5",
"sha256": "a7e0151ddfa20c703fc61ecbba9a10c299ac23cc817b09e2c366bfbabfbb3bab"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ad7c491548b6e7946108ca122c2125b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 739726,
"upload_time": "2024-12-11T16:33:14",
"upload_time_iso_8601": "2024-12-11T16:33:14.384629Z",
"url": "https://files.pythonhosted.org/packages/d2/52/c806b230cf3c472ae888f30e7628c0d23833127dd6462c755f7b9c7f464a/mqt_debugger-1.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "101d4b0b424c97b1827c181cddf2606458544b64432f6350d6501710ae47ba8d",
"md5": "17340a6560212361fa27097db5d19b1a",
"sha256": "76bbe6cb058a11b5ae97316c259957c86d8c8b4b484b8396a211d73c60aa24ad"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "17340a6560212361fa27097db5d19b1a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 540542,
"upload_time": "2024-12-11T16:33:17",
"upload_time_iso_8601": "2024-12-11T16:33:17.538034Z",
"url": "https://files.pythonhosted.org/packages/10/1d/4b0b424c97b1827c181cddf2606458544b64432f6350d6501710ae47ba8d/mqt_debugger-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f45cbe4c201d77e035c61922e249469f5c9aed5554d1bd8fd2b895eff20bf86",
"md5": "e0fbecc0039986c9291e4e8741a07482",
"sha256": "62c64e7997139545c5dbf07066465e772596c0bb0c8b020e9ae0005feccba660"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e0fbecc0039986c9291e4e8741a07482",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 509817,
"upload_time": "2024-12-11T16:33:19",
"upload_time_iso_8601": "2024-12-11T16:33:19.251102Z",
"url": "https://files.pythonhosted.org/packages/6f/45/cbe4c201d77e035c61922e249469f5c9aed5554d1bd8fd2b895eff20bf86/mqt_debugger-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41f80cfaab4e4cca8ba414c689d2e227aad318334e266ab7106cde6cdfb006dc",
"md5": "a471d2b746024b6e9721c8b5279fa46f",
"sha256": "9e4bc378cc4fda6d77146b786a7e2756999291e335115ff01ac254c8b1070540"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a471d2b746024b6e9721c8b5279fa46f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 779326,
"upload_time": "2024-12-11T16:33:22",
"upload_time_iso_8601": "2024-12-11T16:33:22.152365Z",
"url": "https://files.pythonhosted.org/packages/41/f8/0cfaab4e4cca8ba414c689d2e227aad318334e266ab7106cde6cdfb006dc/mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "815fc5bc4308ccbf282f1d5a282284ded549af3043f96775f3d34e587ef9ba32",
"md5": "d2eaf86898c04475db4bddfc171be3e7",
"sha256": "231488770923f0a0507754047596525077e430eda47fa6a92fa56553df7365de"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d2eaf86898c04475db4bddfc171be3e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 930660,
"upload_time": "2024-12-11T16:33:23",
"upload_time_iso_8601": "2024-12-11T16:33:23.948731Z",
"url": "https://files.pythonhosted.org/packages/81/5f/c5bc4308ccbf282f1d5a282284ded549af3043f96775f3d34e587ef9ba32/mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df610d3005a238ee6ed52fa6b7c3fb594b546a952f9210a49d859312d6cce536",
"md5": "4fc5db33c219ffcabac2b1f67a6200a3",
"sha256": "74dbdb207e521227961beeb8094eaec94a9deff149439e091da716bfd5a87548"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4fc5db33c219ffcabac2b1f67a6200a3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 792309,
"upload_time": "2024-12-11T16:33:25",
"upload_time_iso_8601": "2024-12-11T16:33:25.818626Z",
"url": "https://files.pythonhosted.org/packages/df/61/0d3005a238ee6ed52fa6b7c3fb594b546a952f9210a49d859312d6cce536/mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74cfef054bd05042b676a492c1f9ad8ab03fcc1959ebda9646c57dfd7117bba5",
"md5": "ee44e3e435003c8966afebb74f0802e3",
"sha256": "24b3356d1582a449b8262c4d3ce9f775607f988fe0b1688cc86561be4feb13af"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ee44e3e435003c8966afebb74f0802e3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 813264,
"upload_time": "2024-12-11T16:33:30",
"upload_time_iso_8601": "2024-12-11T16:33:30.206500Z",
"url": "https://files.pythonhosted.org/packages/74/cf/ef054bd05042b676a492c1f9ad8ab03fcc1959ebda9646c57dfd7117bba5/mqt_debugger-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cb1b61730085efaee9cb51052f4a7992e14dffc4504f014aad33484d33c74b9",
"md5": "766d0afd24f8987051f00449685b2002",
"sha256": "967dc53ca5653e1b46af48050a903a3360b9399defcce9110f7035b25cb16b0c"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "766d0afd24f8987051f00449685b2002",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 740532,
"upload_time": "2024-12-11T16:33:33",
"upload_time_iso_8601": "2024-12-11T16:33:33.099351Z",
"url": "https://files.pythonhosted.org/packages/7c/b1/b61730085efaee9cb51052f4a7992e14dffc4504f014aad33484d33c74b9/mqt_debugger-1.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84ddbadb32468bc37e31d79094e2927873e82c7f6c7188b6794f4bee6499b908",
"md5": "33ae172a728f56d8f9dd4c7efa7d3d36",
"sha256": "ae82b83697973129190f04ef2fe54ddf3d391a7cbd0de923c93b004f2f207a89"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "33ae172a728f56d8f9dd4c7efa7d3d36",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 554972,
"upload_time": "2024-12-11T16:33:35",
"upload_time_iso_8601": "2024-12-11T16:33:35.997457Z",
"url": "https://files.pythonhosted.org/packages/84/dd/badb32468bc37e31d79094e2927873e82c7f6c7188b6794f4bee6499b908/mqt_debugger-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f17b63ec4859fe145fa29fb89ea92c31472c42ec4719741cea01789a01dd6d3f",
"md5": "c2c07c9da38bf3ca3603f0744edc099a",
"sha256": "174b27b7f1b3ed283a059399938f1b1e5110efd3fc54c35f2eb02fb9504b4a7e"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c2c07c9da38bf3ca3603f0744edc099a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 523396,
"upload_time": "2024-12-11T16:33:37",
"upload_time_iso_8601": "2024-12-11T16:33:37.818032Z",
"url": "https://files.pythonhosted.org/packages/f1/7b/63ec4859fe145fa29fb89ea92c31472c42ec4719741cea01789a01dd6d3f/mqt_debugger-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e20fab8e4cd7291b066b5111633cfb8e981872829d451acdd267694daae97e10",
"md5": "2e831f9c2b1409095206ce9f3192555b",
"sha256": "ca9aa6530758d5f3351d0b8da14f1ac253a07cad2d5e9a7447bb3b3738c244db"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2e831f9c2b1409095206ce9f3192555b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 779117,
"upload_time": "2024-12-11T16:33:39",
"upload_time_iso_8601": "2024-12-11T16:33:39.953608Z",
"url": "https://files.pythonhosted.org/packages/e2/0f/ab8e4cd7291b066b5111633cfb8e981872829d451acdd267694daae97e10/mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cb99122d38ba087b55ef07f4e42a8a017535b385d194a3f89e347f9b2ec1471",
"md5": "cfd7244cde8c1fc19e23d84916f62bd6",
"sha256": "55e30efb0151e2d961c62be3e56b559af24715423158d78ba2026c78ae04e34d"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cfd7244cde8c1fc19e23d84916f62bd6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 930397,
"upload_time": "2024-12-11T16:33:42",
"upload_time_iso_8601": "2024-12-11T16:33:42.078463Z",
"url": "https://files.pythonhosted.org/packages/9c/b9/9122d38ba087b55ef07f4e42a8a017535b385d194a3f89e347f9b2ec1471/mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00f50730d2f62a26ef389ac47e9f86b27547428763ab73880aae8edf7fe8a8ad",
"md5": "dac0060d4f9762d7a4686363066322f0",
"sha256": "22819fd0453d4842ca0abb6c3290f3368967531f13f1d8e46c6ad7b6c4be247c"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dac0060d4f9762d7a4686363066322f0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 792129,
"upload_time": "2024-12-11T16:33:46",
"upload_time_iso_8601": "2024-12-11T16:33:46.258351Z",
"url": "https://files.pythonhosted.org/packages/00/f5/0730d2f62a26ef389ac47e9f86b27547428763ab73880aae8edf7fe8a8ad/mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6d49bc438ea678c3f2fcae20a3e120fcaeea4214e9782b1d43fb4dd406245f5",
"md5": "b153eeab0f073b42c7a56097f1b9fb4f",
"sha256": "9acb1dfd33dc2651ca20263298062281432014ccf18802d0564ba129f10e4569"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b153eeab0f073b42c7a56097f1b9fb4f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 813115,
"upload_time": "2024-12-11T16:33:49",
"upload_time_iso_8601": "2024-12-11T16:33:49.069129Z",
"url": "https://files.pythonhosted.org/packages/e6/d4/9bc438ea678c3f2fcae20a3e120fcaeea4214e9782b1d43fb4dd406245f5/mqt_debugger-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73669030383e5d14469925844d5ce8c9d358e980bb3939b95fc162a9eb968d45",
"md5": "d37ae1a94154146e37946f763dba432f",
"sha256": "398bad80e42d90c7789bcb7794c7a862e9c7e1da29e4b8a4f7ac8075db0f38ae"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "d37ae1a94154146e37946f763dba432f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 741052,
"upload_time": "2024-12-11T16:33:52",
"upload_time_iso_8601": "2024-12-11T16:33:52.059485Z",
"url": "https://files.pythonhosted.org/packages/73/66/9030383e5d14469925844d5ce8c9d358e980bb3939b95fc162a9eb968d45/mqt_debugger-1.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83de08f6b481b2be6fd81ac798a12cd1642d627c3da8c17c1151a3c1bd0907a9",
"md5": "a4b91d789d02d82ded5a2444a4929837",
"sha256": "0059498df2d5629bbca1cfb88928127b6c17d7ed31a1eb8762fa81ea5ad8c69c"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "a4b91d789d02d82ded5a2444a4929837",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 555058,
"upload_time": "2024-12-11T16:33:55",
"upload_time_iso_8601": "2024-12-11T16:33:55.148281Z",
"url": "https://files.pythonhosted.org/packages/83/de/08f6b481b2be6fd81ac798a12cd1642d627c3da8c17c1151a3c1bd0907a9/mqt_debugger-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1efe7b79ba01607f6f373306bc8b65b5637da7107e603de1ee43f46203b5c2b9",
"md5": "c0b50c65c920a9c2d8303c0ae8793131",
"sha256": "bd73f81e1c0b5532e82ac9e873d16202ed456a7f093c08ec94d726f32253200e"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c0b50c65c920a9c2d8303c0ae8793131",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 523473,
"upload_time": "2024-12-11T16:33:57",
"upload_time_iso_8601": "2024-12-11T16:33:57.496559Z",
"url": "https://files.pythonhosted.org/packages/1e/fe/7b79ba01607f6f373306bc8b65b5637da7107e603de1ee43f46203b5c2b9/mqt_debugger-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f36eac2289e27794e81eecbc39d4791e9b1ba49fb179563724f9f480a61ead42",
"md5": "4d6b6dbb3e7c3fb985a73dc887c7eed8",
"sha256": "5bd7e3d03029d6ba6a82bb320a7495523e6611aab7ee2e9fd09ddaa9818aec6e"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4d6b6dbb3e7c3fb985a73dc887c7eed8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 779177,
"upload_time": "2024-12-11T16:34:00",
"upload_time_iso_8601": "2024-12-11T16:34:00.754804Z",
"url": "https://files.pythonhosted.org/packages/f3/6e/ac2289e27794e81eecbc39d4791e9b1ba49fb179563724f9f480a61ead42/mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92dd161b42193ae0b1c26a53c1d88817965b756cbf6c5003e2e1299864d87ffb",
"md5": "159ffe4899e3a8116c839773e3898bd2",
"sha256": "39459632e73f73cfd6b6604c79be4c89661f3f2f16c29dce3cb1ee0e02cb56e5"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "159ffe4899e3a8116c839773e3898bd2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 930471,
"upload_time": "2024-12-11T16:34:05",
"upload_time_iso_8601": "2024-12-11T16:34:05.457418Z",
"url": "https://files.pythonhosted.org/packages/92/dd/161b42193ae0b1c26a53c1d88817965b756cbf6c5003e2e1299864d87ffb/mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a278d22d68779537563f2eba35ac13c4e2bf0ac13955e8e3556f94b78fe2a872",
"md5": "d39e7e0a39bbf38f8f675df11ccde84c",
"sha256": "539f5eb2e1d6ce57c45ae6c9c660859eab2c8f1d6c175b1be988ee19ef51799c"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d39e7e0a39bbf38f8f675df11ccde84c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 792137,
"upload_time": "2024-12-11T16:34:07",
"upload_time_iso_8601": "2024-12-11T16:34:07.142940Z",
"url": "https://files.pythonhosted.org/packages/a2/78/d22d68779537563f2eba35ac13c4e2bf0ac13955e8e3556f94b78fe2a872/mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fb08b5672d6b55e8e0b33d8abf760bebcd891a0bd9b998c39a33eb4b14ec199",
"md5": "e4e95ef9f6fc5696e26589fbcc057acc",
"sha256": "05a214aca36becfaaa727ae61b03a095d066df909cf4f17b960bb1bc9d00a318"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e4e95ef9f6fc5696e26589fbcc057acc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 813251,
"upload_time": "2024-12-11T16:34:09",
"upload_time_iso_8601": "2024-12-11T16:34:09.935135Z",
"url": "https://files.pythonhosted.org/packages/7f/b0/8b5672d6b55e8e0b33d8abf760bebcd891a0bd9b998c39a33eb4b14ec199/mqt_debugger-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e75aee13cb09be5177e7946d32925c3c48cb11b44b2cccc30ba00101d10ab68",
"md5": "8296ef988024d42526c573707b248c00",
"sha256": "2b21304096f2e3456134ad1343a513624c5c2444a5f1a0c5e1385af3fdf94bc1"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8296ef988024d42526c573707b248c00",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 741145,
"upload_time": "2024-12-11T16:34:11",
"upload_time_iso_8601": "2024-12-11T16:34:11.805958Z",
"url": "https://files.pythonhosted.org/packages/3e/75/aee13cb09be5177e7946d32925c3c48cb11b44b2cccc30ba00101d10ab68/mqt_debugger-1.0.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1f364cf5246f41b07b3c10a0ee5289b2ebdfeb9cf267297df24618c196ba352",
"md5": "52f550d81f3e4280da4b8a843d4bd3e4",
"sha256": "17ae36fb9a751ed391bea6e590264a8681223b269f04bcdc4a881d628b714bfd"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "52f550d81f3e4280da4b8a843d4bd3e4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 539701,
"upload_time": "2024-12-11T16:34:13",
"upload_time_iso_8601": "2024-12-11T16:34:13.398566Z",
"url": "https://files.pythonhosted.org/packages/f1/f3/64cf5246f41b07b3c10a0ee5289b2ebdfeb9cf267297df24618c196ba352/mqt_debugger-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c09f73df9692f3f12b9e8973fade58ffb6a8a4cab04a1672828c5776191ce77",
"md5": "022f833f5286d35dfb76193796973c10",
"sha256": "c2d0832af16d3b83a4df5c7dc9f97755d46686be6b3d603b874d86f9232dd33c"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "022f833f5286d35dfb76193796973c10",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 509083,
"upload_time": "2024-12-11T16:34:15",
"upload_time_iso_8601": "2024-12-11T16:34:15.069033Z",
"url": "https://files.pythonhosted.org/packages/3c/09/f73df9692f3f12b9e8973fade58ffb6a8a4cab04a1672828c5776191ce77/mqt_debugger-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8771f4f54de1245eb816a99bae8e4242250eed1e820aef46ea3413512122dfb1",
"md5": "1ec5688542e12a3b2ec3f0b910bb7b31",
"sha256": "5fa2c4887fdd9fcc94336ce89240b5f82bebc8a013e8dec7169ddd52017bf086"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1ec5688542e12a3b2ec3f0b910bb7b31",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 778591,
"upload_time": "2024-12-11T16:34:16",
"upload_time_iso_8601": "2024-12-11T16:34:16.741537Z",
"url": "https://files.pythonhosted.org/packages/87/71/f4f54de1245eb816a99bae8e4242250eed1e820aef46ea3413512122dfb1/mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80214e3d7a373df2cc07c4315d78ae32bbdac90f2bc4c5b6ffff5b2f35c10f54",
"md5": "581a78cd2897843e53e4259b2d6e24ec",
"sha256": "b22278af8f87e9ac433db08329819ec5d217be7d6d844ea2472cedb6e8758770"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "581a78cd2897843e53e4259b2d6e24ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 930105,
"upload_time": "2024-12-11T16:34:18",
"upload_time_iso_8601": "2024-12-11T16:34:18.383356Z",
"url": "https://files.pythonhosted.org/packages/80/21/4e3d7a373df2cc07c4315d78ae32bbdac90f2bc4c5b6ffff5b2f35c10f54/mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbbf0c2828fd25bdb3058724d2cf93c6c82971f0aaef9bbeadb2fcebace3e8ea",
"md5": "d50f707de3ae18621c48cd014ae1c174",
"sha256": "eee882b362db9b77472f8277c3ff93e72def9a7adfed47b5fa86aa50f7a3bf3f"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d50f707de3ae18621c48cd014ae1c174",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 791810,
"upload_time": "2024-12-11T16:34:20",
"upload_time_iso_8601": "2024-12-11T16:34:20.381416Z",
"url": "https://files.pythonhosted.org/packages/fb/bf/0c2828fd25bdb3058724d2cf93c6c82971f0aaef9bbeadb2fcebace3e8ea/mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aeeaf9692da01f3420140e138ab2f2cf771f82c4169a03072e70e7d6ee9eb20b",
"md5": "80314f6bb0d6c512fa11eb57b05e6a14",
"sha256": "522f2e640af9ced46df9367030bb041f8170e1902bdae82ce6df6d00c4f0d4dc"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "80314f6bb0d6c512fa11eb57b05e6a14",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 812742,
"upload_time": "2024-12-11T16:34:22",
"upload_time_iso_8601": "2024-12-11T16:34:22.064518Z",
"url": "https://files.pythonhosted.org/packages/ae/ea/f9692da01f3420140e138ab2f2cf771f82c4169a03072e70e7d6ee9eb20b/mqt_debugger-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36465fc145aaabd6a23a08a67ca8feb21dcf8e4dc8f700ee3a469b7e5df219a8",
"md5": "deceab28dcdff82448fa980d7b6ea0e8",
"sha256": "58574c80a92c40b3d7aca898f6a7e516755b16836dac7369862a00e0d3c6d8d9"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "deceab28dcdff82448fa980d7b6ea0e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 740392,
"upload_time": "2024-12-11T16:34:23",
"upload_time_iso_8601": "2024-12-11T16:34:23.774403Z",
"url": "https://files.pythonhosted.org/packages/36/46/5fc145aaabd6a23a08a67ca8feb21dcf8e4dc8f700ee3a469b7e5df219a8/mqt_debugger-1.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa7db7e039956e73c24caaa609a8d354ec1f7cd325b317e5bcc308ce8513c2d6",
"md5": "f2ae336647da4426f9ebd873f358c725",
"sha256": "9755d018a9adc55214110beb989c535ee09bba4e23f78767a0e7a0a39342b853"
},
"downloads": -1,
"filename": "mqt_debugger-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "f2ae336647da4426f9ebd873f358c725",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 207409,
"upload_time": "2024-12-11T16:34:25",
"upload_time_iso_8601": "2024-12-11T16:34:25.637059Z",
"url": "https://files.pythonhosted.org/packages/aa/7d/b7e039956e73c24caaa609a8d354ec1f7cd325b317e5bcc308ce8513c2d6/mqt_debugger-1.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-11 16:34:25",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cda-tum",
"github_project": "mqt-debugger",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "mqt-debugger"
}