Name | mqt-core JSON |
Version |
2.5.1
JSON |
| download |
home_page | None |
Summary | The Backbone of the Munich Quantum Toolkit |
upload_time | 2024-06-19 14:39:11 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License Copyright (c) 2024 Chair for Design Automation, Technical University of Munich, Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
mqt
quantum-computing
design-automation
decision-diagrams
zx-calculus
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![PyPI](https://img.shields.io/pypi/v/mqt.core?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.core/)
![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-core/actions/workflows/ci.yml)
[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-core/actions/workflows/cd.yml)
[![Documentation](https://img.shields.io/readthedocs/mqt-core?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/core)
[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-core?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-core)
<p align="center">
<a href="https://mqt.readthedocs.io">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/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 Core - The Backbone of the Munich Quantum Toolkit (MQT)
MQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).
To this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.
<p align="center">
<a href="https://mqt.readthedocs.io/projects/core">
<img width=30% src="https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs" alt="Documentation" />
</a>
</p>
If you have any questions, feel free to create a [discussion](https://github.com/cda-tum/mqt-core/discussions) or an [issue](https://github.com/cda-tum/mqt-core/issues) on [GitHub](https://github.com/cda-tum/mqt-core).
## Getting Started
`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.8 to 3.12.
```console
(.venv) $ pip install mqt.core
```
The following code gives an example on the usage:
```python3
from mqt.core import QuantumComputation
qc = QuantumComputation(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure(range(2), range(2))
print(qc)
```
**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**
## System Requirements
Building (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).
However, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.19.
MQT Core relies on some external dependencies:
- [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.
- [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).
- [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).
- [pybind/pybind11_json](https://github.com/pybind/pybind11_json): Using nlohmann::json with pybind11 (only used for creating the Python bindings).
CMake will automatically look for installed versions of these libraries. If it does not find them, they will be fetched automatically at configure time via the [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) module (check out the documentation for more information on how to customize this behavior).
It is recommended (although not required) to have [GraphViz](https://www.graphviz.org) installed for visualization purposes.
If you want to use the ZX library, it is recommended (although not strictly necessary) to have [GMP](https://gmplib.org/) installed in your system.
---
## Acknowledgements
The Munich Quantum Toolkit has been supported by the European
Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement
No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the
Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/cda-tum/mqt/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-core",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "MQT, quantum-computing, design-automation, decision-diagrams, zx-calculus",
"author": null,
"author_email": "Lukas Burgholzer <burgholzer@me.com>",
"download_url": "https://files.pythonhosted.org/packages/48/23/1af86393498e08f57c3102858edb6faa8d891543b925a388d71083c55617/mqt_core-2.5.1.tar.gz",
"platform": null,
"description": "[![PyPI](https://img.shields.io/pypi/v/mqt.core?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.core/)\n![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)\n[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)\n[![CI](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/cda-tum/mqt-core/actions/workflows/ci.yml)\n[![CD](https://img.shields.io/github/actions/workflow/status/cda-tum/mqt-core/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/cda-tum/mqt-core/actions/workflows/cd.yml)\n[![Documentation](https://img.shields.io/readthedocs/mqt-core?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/core)\n[![codecov](https://img.shields.io/codecov/c/github/cda-tum/mqt-core?style=flat-square&logo=codecov)](https://codecov.io/gh/cda-tum/mqt-core)\n\n<p align=\"center\">\n <a href=\"https://mqt.readthedocs.io\">\n <picture>\n <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/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 Core - The Backbone of the Munich Quantum Toolkit (MQT)\n\nMQT Core is an open-source C++17 and Python library for quantum computing that forms the backbone of the quantum software tools developed as part of the [_Munich Quantum Toolkit (MQT)_](https://mqt.readthedocs.io) by the [Chair for Design Automation](https://www.cda.cit.tum.de/) at the [Technical University of Munich](https://www.tum.de/).\nTo this end, it consists of multiple components that are used throughout the MQT, including a fully fledged intermediate representation (IR) for quantum computations, a state-of-the-art decision diagram (DD) package for quantum computing, and a dedicated ZX-diagram package for working with the ZX-calculus.\n\n<p align=\"center\">\n <a href=\"https://mqt.readthedocs.io/projects/core\">\n <img width=30% src=\"https://img.shields.io/badge/documentation-blue?style=for-the-badge&logo=read%20the%20docs\" alt=\"Documentation\" />\n </a>\n</p>\n\nIf you have any questions, feel free to create a [discussion](https://github.com/cda-tum/mqt-core/discussions) or an [issue](https://github.com/cda-tum/mqt-core/issues) on [GitHub](https://github.com/cda-tum/mqt-core).\n\n## Getting Started\n\n`mqt.core` is available via [PyPI](https://pypi.org/project/mqt.core/) for all major operating systems and supports Python 3.8 to 3.12.\n\n```console\n(.venv) $ pip install mqt.core\n```\n\nThe following code gives an example on the usage:\n\n```python3\nfrom mqt.core import QuantumComputation\n\nqc = QuantumComputation(2, 2)\nqc.h(0)\nqc.cx(0, 1)\nqc.measure(range(2), range(2))\n\nprint(qc)\n```\n\n**Detailed documentation and examples are available at [ReadTheDocs](https://mqt.readthedocs.io/projects/core).**\n\n## System Requirements\n\nBuilding (and running) is continuously tested under Linux, MacOS, and Windows using the [latest available system versions for GitHub Actions](https://github.com/actions/runner-images).\nHowever, the implementation should be compatible with any current C++ compiler supporting C++17 and a minimum CMake version of 3.19.\n\nMQT Core relies on some external dependencies:\n\n- [nlohmann/json](https://github.com/nlohmann/json): A JSON library for modern C++.\n- [boost/multiprecision](https://github.com/boostorg/multiprecision): A library for multiprecision arithmetic (used in the ZX package).\n- [google/googletest](https://github.com/google/googletest): A testing framework for C++ (only used in tests).\n- [pybind/pybind11_json](https://github.com/pybind/pybind11_json): Using nlohmann::json with pybind11 (only used for creating the Python bindings).\n\nCMake will automatically look for installed versions of these libraries. If it does not find them, they will be fetched automatically at configure time via the [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) module (check out the documentation for more information on how to customize this behavior).\n\nIt is recommended (although not required) to have [GraphViz](https://www.graphviz.org) installed for visualization purposes.\n\nIf you want to use the ZX library, it is recommended (although not strictly necessary) to have [GMP](https://gmplib.org/) installed in your system.\n\n---\n\n## Acknowledgements\n\nThe Munich Quantum Toolkit has been supported by the European\nResearch Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement\nNo. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the\nMunich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.\n\n<p align=\"center\">\n<picture>\n<source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/cda-tum/mqt/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, Germany Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "The Backbone of the Munich Quantum Toolkit",
"version": "2.5.1",
"project_urls": {
"Discussions": "https://github.com/cda-tum/mqt-core/discussions",
"Documentation": "https://mqt.readthedocs.io/projects/core",
"Homepage": "https://github.com/cda-tum/mqt-core",
"Issues": "https://github.com/cda-tum/mqt-core/issues"
},
"split_keywords": [
"mqt",
" quantum-computing",
" design-automation",
" decision-diagrams",
" zx-calculus"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f9f8e5514cdffeb4200ca05a35278e72be4d80a1101c7cef2870bb97dce8e968",
"md5": "131313a1ab3ead180b77ef1410297536",
"sha256": "e8db1b6bd2639a95a120f8424e18d1dbe760ee8dbe8838f96f0049a0c559ad0c"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "131313a1ab3ead180b77ef1410297536",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 467496,
"upload_time": "2024-06-19T14:25:20",
"upload_time_iso_8601": "2024-06-19T14:25:20.766210Z",
"url": "https://files.pythonhosted.org/packages/f9/f8/e5514cdffeb4200ca05a35278e72be4d80a1101c7cef2870bb97dce8e968/mqt_core-2.5.1-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cebe4d3ea53951c33f84d6a1687e0cd4ad9cc1d1ac1f4bd947c36f89e76e387",
"md5": "0fefb15194e5801e52d4fb99d6953de9",
"sha256": "60cbae715e31c27c7dc5b9682b56a87556a2a9b6fbc7bea052bdcee16adfc486"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0fefb15194e5801e52d4fb99d6953de9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 437945,
"upload_time": "2024-06-19T14:25:33",
"upload_time_iso_8601": "2024-06-19T14:25:33.975755Z",
"url": "https://files.pythonhosted.org/packages/1c/eb/e4d3ea53951c33f84d6a1687e0cd4ad9cc1d1ac1f4bd947c36f89e76e387/mqt_core-2.5.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fcdb7c6982051fe0eaa6609823edfaf96d398c7153910fe85398e8e5e4021c0",
"md5": "bd3875cce8c45bd3a79ac8fd4a60b735",
"sha256": "a0a27d48b4a896b37eaaf52686c6a637b944f633aea43ff5206f25a127ae0a33"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd3875cce8c45bd3a79ac8fd4a60b735",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 612228,
"upload_time": "2024-06-19T14:25:45",
"upload_time_iso_8601": "2024-06-19T14:25:45.082171Z",
"url": "https://files.pythonhosted.org/packages/4f/cd/b7c6982051fe0eaa6609823edfaf96d398c7153910fe85398e8e5e4021c0/mqt_core-2.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f22c78defd9f8eadda04471eaaf65ec08aceb1d6ffd344b50cbebc229e14aef2",
"md5": "04dce98f3532d00b8312af8d23d18293",
"sha256": "f55481ab83a9f02c4f7023c7012ef49f3245ae12d0b747ca1a3a43a2cd6bdac6"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "04dce98f3532d00b8312af8d23d18293",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 683084,
"upload_time": "2024-06-19T14:25:53",
"upload_time_iso_8601": "2024-06-19T14:25:53.868150Z",
"url": "https://files.pythonhosted.org/packages/f2/2c/78defd9f8eadda04471eaaf65ec08aceb1d6ffd344b50cbebc229e14aef2/mqt_core-2.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "260080c930c9ab52f47e56b01d61a6da8336a40ea055bdebe53f25d9f0a51315",
"md5": "9b28fbde446109903390e7a1d2ae9410",
"sha256": "bced235ebe6f7cd84e525761ec3745346e731cf28cd2265472aa0e790b83f10b"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9b28fbde446109903390e7a1d2ae9410",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 625722,
"upload_time": "2024-06-19T14:26:15",
"upload_time_iso_8601": "2024-06-19T14:26:15.292308Z",
"url": "https://files.pythonhosted.org/packages/26/00/80c930c9ab52f47e56b01d61a6da8336a40ea055bdebe53f25d9f0a51315/mqt_core-2.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "784a753f4a4b1462d7f0a335f3c4ca1057dabfb4d4bbe57b5188f463726e2880",
"md5": "68c3971d0cdebd976e95ae4ea3e809be",
"sha256": "873c6ee3becbb398d7193219663b091ce04d2a6c0f05dd3004ee585d88a6d77d"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "68c3971d0cdebd976e95ae4ea3e809be",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 640919,
"upload_time": "2024-06-19T14:26:35",
"upload_time_iso_8601": "2024-06-19T14:26:35.984683Z",
"url": "https://files.pythonhosted.org/packages/78/4a/753f4a4b1462d7f0a335f3c4ca1057dabfb4d4bbe57b5188f463726e2880/mqt_core-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf93d84196c03d7239f3aea5c22f96863aa53268e16d9cd9caabbb952bc45adf",
"md5": "695471158d13a1fc98764817d3fcb1df",
"sha256": "8a15b83287af09f99af871604adef92186120e1406064a2e4fce09b3b11d3d93"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "695471158d13a1fc98764817d3fcb1df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 641813,
"upload_time": "2024-06-19T14:27:04",
"upload_time_iso_8601": "2024-06-19T14:27:04.595196Z",
"url": "https://files.pythonhosted.org/packages/cf/93/d84196c03d7239f3aea5c22f96863aa53268e16d9cd9caabbb952bc45adf/mqt_core-2.5.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a582b576f2aacd2c3f55d0804b3a0c016187ba53515791c854c024478eb9bbb",
"md5": "ec79adf3dece60c7d9fa58fcbe47134b",
"sha256": "89a4b601387ddc815a395e7215117875166f3e89e6c5f1a1ebcc37e5c7a272d7"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "ec79adf3dece60c7d9fa58fcbe47134b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 468257,
"upload_time": "2024-06-19T14:27:07",
"upload_time_iso_8601": "2024-06-19T14:27:07.686310Z",
"url": "https://files.pythonhosted.org/packages/8a/58/2b576f2aacd2c3f55d0804b3a0c016187ba53515791c854c024478eb9bbb/mqt_core-2.5.1-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21e6f83c32393baf9d35d4ef2b63345710ef70ae503017ac4f7248707a71ab48",
"md5": "e4bed3f4033fe89943a74d2e8f906dd9",
"sha256": "6fa70ecdc379f5426f05a7cc615900a824806350266d4e3a1b083022131d8256"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e4bed3f4033fe89943a74d2e8f906dd9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 439205,
"upload_time": "2024-06-19T14:27:15",
"upload_time_iso_8601": "2024-06-19T14:27:15.982255Z",
"url": "https://files.pythonhosted.org/packages/21/e6/f83c32393baf9d35d4ef2b63345710ef70ae503017ac4f7248707a71ab48/mqt_core-2.5.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b8c19b1d8eeb07384563a1014bfca97b92c4080888cc0d0f992c7fd24ef45b1a",
"md5": "d92f9ea1d87c8d5c01ca74c50d7b1a8b",
"sha256": "2e4ec40f3e35396ef28f2aa25d121a7b60c8ebd9ae4b9530bb084ce7375ebd82"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d92f9ea1d87c8d5c01ca74c50d7b1a8b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 612591,
"upload_time": "2024-06-19T14:37:45",
"upload_time_iso_8601": "2024-06-19T14:37:45.269091Z",
"url": "https://files.pythonhosted.org/packages/b8/c1/9b1d8eeb07384563a1014bfca97b92c4080888cc0d0f992c7fd24ef45b1a/mqt_core-2.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdd654de83d54450ace3f232635f8846aa4cb41da6b669e61e78b7998acc6674",
"md5": "f5ccd0da2677ed361108563d7a17d7d4",
"sha256": "ef7685283ca6610fabd31b5c9d127e1de8471e32a983b895f0f45741ff5c7cd2"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f5ccd0da2677ed361108563d7a17d7d4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 683892,
"upload_time": "2024-06-19T14:37:48",
"upload_time_iso_8601": "2024-06-19T14:37:48.964735Z",
"url": "https://files.pythonhosted.org/packages/bd/d6/54de83d54450ace3f232635f8846aa4cb41da6b669e61e78b7998acc6674/mqt_core-2.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "339eef4c97737645526c35f1e9775060e09018f94881866ef0293b92a49810de",
"md5": "8ee85db64950f38d5c4082f01e74822c",
"sha256": "c16a157f31a16af7112b319fbebe72d720851614fa14e62a0e4b62c87b5c0ab9"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8ee85db64950f38d5c4082f01e74822c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 626573,
"upload_time": "2024-06-19T14:37:52",
"upload_time_iso_8601": "2024-06-19T14:37:52.973778Z",
"url": "https://files.pythonhosted.org/packages/33/9e/ef4c97737645526c35f1e9775060e09018f94881866ef0293b92a49810de/mqt_core-2.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3e331734025d7dfca0aedadf1f39ef0900489b5a82611665c6890056abb8c8f",
"md5": "933ad6a7df42298f489a871717ea101a",
"sha256": "76ca28d1bd83fbd0f3b94a244f242866770c4d3b750df4a860bdc7180b8ecef8"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "933ad6a7df42298f489a871717ea101a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 641705,
"upload_time": "2024-06-19T14:37:54",
"upload_time_iso_8601": "2024-06-19T14:37:54.939872Z",
"url": "https://files.pythonhosted.org/packages/e3/e3/31734025d7dfca0aedadf1f39ef0900489b5a82611665c6890056abb8c8f/mqt_core-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db79b38c25911e2452d52242f6088a95dd96033bfe02650af240f09f4ca7bdcd",
"md5": "6fe0ba4a727fad9cc70837be98902d36",
"sha256": "ffd4d653ebcab7be1463e8b54bfbf7e9d10bfbfd8a6b33c511b48837f99c209a"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6fe0ba4a727fad9cc70837be98902d36",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 642627,
"upload_time": "2024-06-19T14:37:57",
"upload_time_iso_8601": "2024-06-19T14:37:57.309470Z",
"url": "https://files.pythonhosted.org/packages/db/79/b38c25911e2452d52242f6088a95dd96033bfe02650af240f09f4ca7bdcd/mqt_core-2.5.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a65f6cc1470ed9ef85a25be82028cb3b850ab682f159bbdcaac9d7c6868d6d0",
"md5": "c84347c8c1b67d5e80ed611e68df963d",
"sha256": "a4949118070af8b47a494bcfbf9aa6149ae51be6935d3032452b853c1c4fd661"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "c84347c8c1b67d5e80ed611e68df963d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 494799,
"upload_time": "2024-06-19T14:38:00",
"upload_time_iso_8601": "2024-06-19T14:38:00.297376Z",
"url": "https://files.pythonhosted.org/packages/1a/65/f6cc1470ed9ef85a25be82028cb3b850ab682f159bbdcaac9d7c6868d6d0/mqt_core-2.5.1-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4086c8720a3096d441af81bcd576622187d6f324a1214209703d8c39c4623fac",
"md5": "662080921547a4d9f6922f4afe6798d2",
"sha256": "0d1e250e4406c9d8d2082008dea1df5ba427b024c595c4baecb0a447af243293"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "662080921547a4d9f6922f4afe6798d2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 465340,
"upload_time": "2024-06-19T14:38:02",
"upload_time_iso_8601": "2024-06-19T14:38:02.111319Z",
"url": "https://files.pythonhosted.org/packages/40/86/c8720a3096d441af81bcd576622187d6f324a1214209703d8c39c4623fac/mqt_core-2.5.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8adf754a0b470c72e78f03cabbba4fc49a89803ab9999aa5be6b82c0db3afe5e",
"md5": "9c54d2801f501d465735af741c0d71a5",
"sha256": "5f3d14810d945324e95f195269d1779f9bf678f373f0f77fce8fb66295b62857"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9c54d2801f501d465735af741c0d71a5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 612453,
"upload_time": "2024-06-19T14:38:04",
"upload_time_iso_8601": "2024-06-19T14:38:04.214948Z",
"url": "https://files.pythonhosted.org/packages/8a/df/754a0b470c72e78f03cabbba4fc49a89803ab9999aa5be6b82c0db3afe5e/mqt_core-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1eef3af1b48ae0e50ee19901cf406ca929ea0ebf845fff1c80df50819a2206cd",
"md5": "83e8c5056b008ca15aa4bf6c94760834",
"sha256": "f0535720e5e024981c39d87351d5fc4d1c3c1318d27530b7a912d0b4dd9ef43f"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "83e8c5056b008ca15aa4bf6c94760834",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 683317,
"upload_time": "2024-06-19T14:38:08",
"upload_time_iso_8601": "2024-06-19T14:38:08.355549Z",
"url": "https://files.pythonhosted.org/packages/1e/ef/3af1b48ae0e50ee19901cf406ca929ea0ebf845fff1c80df50819a2206cd/mqt_core-2.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bdc4f9766306b27d51f57571c4a6c57f61df5971843951d681d66549127d067",
"md5": "a4e7acd6b07c287c2476b1401ad7f2a7",
"sha256": "1a989cc671a11cecc822c54a9e427e601d16a89554e922ed9586634c987cf056"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a4e7acd6b07c287c2476b1401ad7f2a7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 626459,
"upload_time": "2024-06-19T14:38:10",
"upload_time_iso_8601": "2024-06-19T14:38:10.140868Z",
"url": "https://files.pythonhosted.org/packages/9b/dc/4f9766306b27d51f57571c4a6c57f61df5971843951d681d66549127d067/mqt_core-2.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4aa2a242db251f0ccc3d7407133034beceb1a81d3217fac2137b9be84baed0cf",
"md5": "eb5781c64c43b49bee3e86444684e364",
"sha256": "b63e86fca244ce6d5c987acd66eac05b62296b080374bb709b7d435ffdc7f514"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "eb5781c64c43b49bee3e86444684e364",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 641544,
"upload_time": "2024-06-19T14:38:14",
"upload_time_iso_8601": "2024-06-19T14:38:14.241087Z",
"url": "https://files.pythonhosted.org/packages/4a/a2/a242db251f0ccc3d7407133034beceb1a81d3217fac2137b9be84baed0cf/mqt_core-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c27e1cc46522503549dc5221b493d9c23247dc41928969acc61948c4bf511408",
"md5": "b797907d0d3f6765767c72b85ae9e20b",
"sha256": "69e49eec2748382afb3065be598d45d3953dfc570010528a90558a41749c2a7b"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b797907d0d3f6765767c72b85ae9e20b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 644089,
"upload_time": "2024-06-19T14:38:18",
"upload_time_iso_8601": "2024-06-19T14:38:18.670494Z",
"url": "https://files.pythonhosted.org/packages/c2/7e/1cc46522503549dc5221b493d9c23247dc41928969acc61948c4bf511408/mqt_core-2.5.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b628a689c0e46c9418d822eac8319c24b340f394ac222d90bfdc3991ec4ad758",
"md5": "388dc9fb63d06ec658f143dc9b9348a5",
"sha256": "ef0caf7d88e9c90efdcf5c1ec0927b6b027bb3a223b3f11666c5b15b2a5cf9af"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "388dc9fb63d06ec658f143dc9b9348a5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 467428,
"upload_time": "2024-06-19T14:38:22",
"upload_time_iso_8601": "2024-06-19T14:38:22.756811Z",
"url": "https://files.pythonhosted.org/packages/b6/28/a689c0e46c9418d822eac8319c24b340f394ac222d90bfdc3991ec4ad758/mqt_core-2.5.1-cp38-cp38-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "392aa551f22aecd2a84389eac3832b5a3681a643da792591128c7ef23fac32a4",
"md5": "dbd5729d47491a42c6d443869e4698f3",
"sha256": "6efeefc30d2d9144f83d70d8e501deeebea976426ac2c8636a2b3cc0fc1c12ec"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dbd5729d47491a42c6d443869e4698f3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 437889,
"upload_time": "2024-06-19T14:38:26",
"upload_time_iso_8601": "2024-06-19T14:38:26.980875Z",
"url": "https://files.pythonhosted.org/packages/39/2a/a551f22aecd2a84389eac3832b5a3681a643da792591128c7ef23fac32a4/mqt_core-2.5.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f75bed24ed36d33fff5317eb85182dcb4c37d1b79ef18be61c95b694ce5b1b5",
"md5": "fbd6099e4b0e18fcc93994358560bb58",
"sha256": "aac08c691d2402ce701a6feb8c7b27f8056c253953a6b5bcfd36fb630c09aa9b"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fbd6099e4b0e18fcc93994358560bb58",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 612231,
"upload_time": "2024-06-19T14:38:28",
"upload_time_iso_8601": "2024-06-19T14:38:28.761242Z",
"url": "https://files.pythonhosted.org/packages/2f/75/bed24ed36d33fff5317eb85182dcb4c37d1b79ef18be61c95b694ce5b1b5/mqt_core-2.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75e538f9b620852c5a7455fd12052c6f118299074d880b1f62d9ba07b002ef54",
"md5": "39604fc726fc7ee8069b8664253ff8c1",
"sha256": "898793131926e57afe8d372004eeec4d7a8aa0e0e3595d99bb047d68f78ce7d9"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "39604fc726fc7ee8069b8664253ff8c1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 683084,
"upload_time": "2024-06-19T14:38:30",
"upload_time_iso_8601": "2024-06-19T14:38:30.849160Z",
"url": "https://files.pythonhosted.org/packages/75/e5/38f9b620852c5a7455fd12052c6f118299074d880b1f62d9ba07b002ef54/mqt_core-2.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6cdab76547981c8846295f83632e98ef51df696e52f4c8082f55441819826cc",
"md5": "1b9541d219599b7e815b468ff90d9400",
"sha256": "518f907d1de9120cdcbed5b0f9d94bdc1d2d727bd4336bd0cff2712ce66d1488"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1b9541d219599b7e815b468ff90d9400",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 625728,
"upload_time": "2024-06-19T14:38:32",
"upload_time_iso_8601": "2024-06-19T14:38:32.576448Z",
"url": "https://files.pythonhosted.org/packages/d6/cd/ab76547981c8846295f83632e98ef51df696e52f4c8082f55441819826cc/mqt_core-2.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e38a607e3e561e37693390a0177c2c36404d9eb177fa3463ba6e2a9a00a4939e",
"md5": "4095e1014d6e27dc293bbadb6771ff7b",
"sha256": "bd7cb5470d45fe29724983bf2007fef560a7b97f329578024567fe30215fb734"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4095e1014d6e27dc293bbadb6771ff7b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 640826,
"upload_time": "2024-06-19T14:38:34",
"upload_time_iso_8601": "2024-06-19T14:38:34.810016Z",
"url": "https://files.pythonhosted.org/packages/e3/8a/607e3e561e37693390a0177c2c36404d9eb177fa3463ba6e2a9a00a4939e/mqt_core-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89dc79c92c82b94e79a067c57e12da3fc69cfeca735d5ab275f55033144b3f64",
"md5": "99e51f429f7426793c0b548cea43b82b",
"sha256": "add0e9503e06f198193fb68d8b8e10cee35fa3638ca6c4624c71cd744c3d9898"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "99e51f429f7426793c0b548cea43b82b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 656921,
"upload_time": "2024-06-19T14:38:36",
"upload_time_iso_8601": "2024-06-19T14:38:36.563617Z",
"url": "https://files.pythonhosted.org/packages/89/dc/79c92c82b94e79a067c57e12da3fc69cfeca735d5ab275f55033144b3f64/mqt_core-2.5.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc8050114f711e4b610404bb02010cd767e92727973a99f4fbf8fef576b0b810",
"md5": "daf9bb8abee5454ffbfc2ae750c8fbdd",
"sha256": "4add5317d5cb9845f9c64c39d414898c38ae611da9d5ce67ed50ddfac023ec29"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "daf9bb8abee5454ffbfc2ae750c8fbdd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 467582,
"upload_time": "2024-06-19T14:38:39",
"upload_time_iso_8601": "2024-06-19T14:38:39.443595Z",
"url": "https://files.pythonhosted.org/packages/cc/80/50114f711e4b610404bb02010cd767e92727973a99f4fbf8fef576b0b810/mqt_core-2.5.1-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88049a1894e5ff5796b3c6e633bb69837ac1816065871c1eebfe627906bdba44",
"md5": "35bd31b99770796e5c124d216a35221e",
"sha256": "6a0ab117888d45d469491e5010c56c61bc946d6053c83917f800c5f2d931f751"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "35bd31b99770796e5c124d216a35221e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 438108,
"upload_time": "2024-06-19T14:38:41",
"upload_time_iso_8601": "2024-06-19T14:38:41.289161Z",
"url": "https://files.pythonhosted.org/packages/88/04/9a1894e5ff5796b3c6e633bb69837ac1816065871c1eebfe627906bdba44/mqt_core-2.5.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1923920db9001f10331487ab238ddcffde540a512a7936bfb01e34aa0746de75",
"md5": "1d9f7070ee14c32affda9f9bdc2db5c4",
"sha256": "9193dcc3543a6b807ca69186e080eb56cd0033a5a51a2c53b59da7d740d29ad3"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1d9f7070ee14c32affda9f9bdc2db5c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 612378,
"upload_time": "2024-06-19T14:38:43",
"upload_time_iso_8601": "2024-06-19T14:38:43.142784Z",
"url": "https://files.pythonhosted.org/packages/19/23/920db9001f10331487ab238ddcffde540a512a7936bfb01e34aa0746de75/mqt_core-2.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3023308d510fb034bbcb6552b61a676a5aabe51900d78176692be7fa1cecb620",
"md5": "a62b5f6d5c7d1f8c3e648a2a41139034",
"sha256": "7536e9e9d73c7d0d68748ac1ae4fb9c4e38eaa38c5f910f695ebc0ad9168e11b"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a62b5f6d5c7d1f8c3e648a2a41139034",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 683386,
"upload_time": "2024-06-19T14:38:45",
"upload_time_iso_8601": "2024-06-19T14:38:45.258906Z",
"url": "https://files.pythonhosted.org/packages/30/23/308d510fb034bbcb6552b61a676a5aabe51900d78176692be7fa1cecb620/mqt_core-2.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e21f6a182953ecaebc6059b24808d27ad8590cfe132d840b35dda013b6a6641b",
"md5": "1c664deabd02d2c80ee546896eb1cd27",
"sha256": "d20baf7c490295d552b6db055ec656952c1f6b6b1ed94ed0501e32f46bbfea5d"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1c664deabd02d2c80ee546896eb1cd27",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 626173,
"upload_time": "2024-06-19T14:38:58",
"upload_time_iso_8601": "2024-06-19T14:38:58.592430Z",
"url": "https://files.pythonhosted.org/packages/e2/1f/6a182953ecaebc6059b24808d27ad8590cfe132d840b35dda013b6a6641b/mqt_core-2.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "519ee836c35a5bb93c9e3a9f40c5bc89c34f1e6c53294969fb875129e6bf3657",
"md5": "821fa87827ae7ac32471829e4bafb595",
"sha256": "5dadb1f52a10d0088bc8989a29277d574dd7c8a0a4830fa00b9b37fd4befd786"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "821fa87827ae7ac32471829e4bafb595",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 641126,
"upload_time": "2024-06-19T14:39:05",
"upload_time_iso_8601": "2024-06-19T14:39:05.097247Z",
"url": "https://files.pythonhosted.org/packages/51/9e/e836c35a5bb93c9e3a9f40c5bc89c34f1e6c53294969fb875129e6bf3657/mqt_core-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b66bfb9300b8ceef3d222cee421961c60d0fc6234bd3d516f19f15067a8cdbab",
"md5": "e45fb495023a797f50e7c41cc9b00aae",
"sha256": "aafcf89c5adfffd3306d66a49ea1210cf6190c6c48afeae4f62d6b547c08474f"
},
"downloads": -1,
"filename": "mqt_core-2.5.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "e45fb495023a797f50e7c41cc9b00aae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 642411,
"upload_time": "2024-06-19T14:39:08",
"upload_time_iso_8601": "2024-06-19T14:39:08.332599Z",
"url": "https://files.pythonhosted.org/packages/b6/6b/fb9300b8ceef3d222cee421961c60d0fc6234bd3d516f19f15067a8cdbab/mqt_core-2.5.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48231af86393498e08f57c3102858edb6faa8d891543b925a388d71083c55617",
"md5": "ebbec929a0873e897b5861bb76091471",
"sha256": "9f5728e0550093354de3eafa8f5e649341a4b84d6aab407e38fd7f96f6c2ceba"
},
"downloads": -1,
"filename": "mqt_core-2.5.1.tar.gz",
"has_sig": false,
"md5_digest": "ebbec929a0873e897b5861bb76091471",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 258883,
"upload_time": "2024-06-19T14:39:11",
"upload_time_iso_8601": "2024-06-19T14:39:11.187041Z",
"url": "https://files.pythonhosted.org/packages/48/23/1af86393498e08f57c3102858edb6faa8d891543b925a388d71083c55617/mqt_core-2.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-19 14:39:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cda-tum",
"github_project": "mqt-core",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "mqt-core"
}