quapp-qiskit 0.0.12.dev5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ The MIT License (MIT)
2
+ Copyright © CITYNOW Co. Ltd. All rights reserved.
3
+
4
+ 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:
5
+
6
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+ 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.
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.4
2
+ Name: quapp-qiskit
3
+ Version: 0.0.12.dev5
4
+ Summary: Quapp common library supporting Quapp Platform for Quantum Computing
5
+ Author-email: "CITYNOW Co. Ltd. " <corp@citynow.vn>
6
+ Project-URL: Homepage, https://quapp.cloud/
7
+ Keywords: quapp,quapp-qiskit,quantum
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: <3.11,>=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: quapp-common==0.0.11.dev7
14
+ Requires-Dist: qiskit==0.45.3
15
+ Requires-Dist: oqc-qcaas-client==3.7.0
16
+ Requires-Dist: qiskit-aer-gpu==0.13.3
17
+ Requires-Dist: qiskit-ibm-provider==0.10.0
18
+ Requires-Dist: qiskit-ibm-runtime==0.19.1
19
+ Provides-Extra: dev
20
+ Requires-Dist: black; extra == "dev"
21
+ Requires-Dist: bumpver; extra == "dev"
22
+ Requires-Dist: isort; extra == "dev"
23
+ Requires-Dist: pip-tools; extra == "dev"
24
+ Requires-Dist: pytest; extra == "dev"
25
+ Dynamic: license-file
26
+
27
+ # quapp-qiskit
28
+
29
+ Quapp qiskit library supporting Quapp Platform for Quantum Computing.
30
+
31
+ ## Overview
32
+
33
+ `quapp-qiskit` provides the providers, devices, factories, and tasks to
34
+ run quantum circuits via Qiskit within the Quapp Platform. It integrates with
35
+ IBM Quantum, IBM Cloud, OQC Cloud, and Qiskit simulators (Aer), with a strong
36
+ focus on clean, consistent logging, robust error handling, and standardized
37
+ header management using project/workspace context to improve maintainability and
38
+ clarity.
39
+
40
+ ## Features
41
+
42
+ - Provider and device factories for IBM Quantum, IBM Cloud, OQC Cloud, and
43
+ Qiskit Aer simulators.
44
+ - Circuit export and transpilation pipeline with asynchronous job submission.
45
+ - Consistent, context-rich logging across provider/device creation,
46
+ transpilation, job submission, and job fetching.
47
+ - Standardized header handling using project and workspace headers for backend
48
+ invocations.
49
+ - Improved error handling and diagnostics in critical execution paths.
50
+
51
+ ## Installation
52
+
53
+ Install via pip:
54
+
55
+ ```bash
56
+ pip install quapp-qiskit
57
+ ```
58
+
59
+ ## Recently Changes Highlights
60
+
61
+ - refactor: Remove unused timing logs and import from InvocationHandler.
62
+ - refactor: Replace set/map usage with set comprehension and enhance logging for
63
+ unsupported devices.
64
+ - refactor: Add support for project and workspace headers in backend invocation.
65
+ - refactor: Update logging to handle missing jobId gracefully.
66
+ - refactor: Improve logging across device and provider classes, enhance error
67
+ handling in key methods.
68
+ - chore: Bump a library version and update quapp-common dependency to the latest
69
+ development release.
70
+
71
+ For detailed usage and API references, please refer to the in-code documentation
72
+ or contact the maintainers.
@@ -0,0 +1,46 @@
1
+ # quapp-qiskit
2
+
3
+ Quapp qiskit library supporting Quapp Platform for Quantum Computing.
4
+
5
+ ## Overview
6
+
7
+ `quapp-qiskit` provides the providers, devices, factories, and tasks to
8
+ run quantum circuits via Qiskit within the Quapp Platform. It integrates with
9
+ IBM Quantum, IBM Cloud, OQC Cloud, and Qiskit simulators (Aer), with a strong
10
+ focus on clean, consistent logging, robust error handling, and standardized
11
+ header management using project/workspace context to improve maintainability and
12
+ clarity.
13
+
14
+ ## Features
15
+
16
+ - Provider and device factories for IBM Quantum, IBM Cloud, OQC Cloud, and
17
+ Qiskit Aer simulators.
18
+ - Circuit export and transpilation pipeline with asynchronous job submission.
19
+ - Consistent, context-rich logging across provider/device creation,
20
+ transpilation, job submission, and job fetching.
21
+ - Standardized header handling using project and workspace headers for backend
22
+ invocations.
23
+ - Improved error handling and diagnostics in critical execution paths.
24
+
25
+ ## Installation
26
+
27
+ Install via pip:
28
+
29
+ ```bash
30
+ pip install quapp-qiskit
31
+ ```
32
+
33
+ ## Recently Changes Highlights
34
+
35
+ - refactor: Remove unused timing logs and import from InvocationHandler.
36
+ - refactor: Replace set/map usage with set comprehension and enhance logging for
37
+ unsupported devices.
38
+ - refactor: Add support for project and workspace headers in backend invocation.
39
+ - refactor: Update logging to handle missing jobId gracefully.
40
+ - refactor: Improve logging across device and provider classes, enhance error
41
+ handling in key methods.
42
+ - chore: Bump a library version and update quapp-common dependency to the latest
43
+ development release.
44
+
45
+ For detailed usage and API references, please refer to the in-code documentation
46
+ or contact the maintainers.
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0", "wheel==0.45.1"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "quapp-qiskit"
7
+ version = "0.0.12.dev5"
8
+ description = "Quapp common library supporting Quapp Platform for Quantum Computing"
9
+ readme = "README.md"
10
+ authors = [{ name = "CITYNOW Co. Ltd. ", email = "corp@citynow.vn" }]
11
+ classifiers = [
12
+ "Programming Language :: Python",
13
+ "Programming Language :: Python :: 3",
14
+ ]
15
+ keywords = ["quapp", "quapp-qiskit", "quantum"]
16
+ dependencies = [
17
+ "quapp-common==0.0.11.dev7",
18
+ "qiskit==0.45.3",
19
+ "oqc-qcaas-client==3.7.0",
20
+ "qiskit-aer-gpu==0.13.3",
21
+ "qiskit-ibm-provider==0.10.0",
22
+ "qiskit-ibm-runtime==0.19.1"
23
+ ]
24
+ requires-python = ">=3.9,<3.11"
25
+
26
+ [project.optional-dependencies]
27
+ dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
28
+
29
+ [tool.setuptools.packages.find]
30
+ include = ["quapp_qiskit"]
31
+ exclude = ["*.md", "*.yml", "*.yaml", "*.toml", "tests*", ".gitignore"]
32
+
33
+ [project.urls]
34
+ Homepage = "https://quapp.cloud/"
35
+
@@ -0,0 +1 @@
1
+ from .factory.qiskit_handler_factory import QiskitHandlerFactory
@@ -0,0 +1,72 @@
1
+ Metadata-Version: 2.4
2
+ Name: quapp-qiskit
3
+ Version: 0.0.12.dev5
4
+ Summary: Quapp common library supporting Quapp Platform for Quantum Computing
5
+ Author-email: "CITYNOW Co. Ltd. " <corp@citynow.vn>
6
+ Project-URL: Homepage, https://quapp.cloud/
7
+ Keywords: quapp,quapp-qiskit,quantum
8
+ Classifier: Programming Language :: Python
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: <3.11,>=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: quapp-common==0.0.11.dev7
14
+ Requires-Dist: qiskit==0.45.3
15
+ Requires-Dist: oqc-qcaas-client==3.7.0
16
+ Requires-Dist: qiskit-aer-gpu==0.13.3
17
+ Requires-Dist: qiskit-ibm-provider==0.10.0
18
+ Requires-Dist: qiskit-ibm-runtime==0.19.1
19
+ Provides-Extra: dev
20
+ Requires-Dist: black; extra == "dev"
21
+ Requires-Dist: bumpver; extra == "dev"
22
+ Requires-Dist: isort; extra == "dev"
23
+ Requires-Dist: pip-tools; extra == "dev"
24
+ Requires-Dist: pytest; extra == "dev"
25
+ Dynamic: license-file
26
+
27
+ # quapp-qiskit
28
+
29
+ Quapp qiskit library supporting Quapp Platform for Quantum Computing.
30
+
31
+ ## Overview
32
+
33
+ `quapp-qiskit` provides the providers, devices, factories, and tasks to
34
+ run quantum circuits via Qiskit within the Quapp Platform. It integrates with
35
+ IBM Quantum, IBM Cloud, OQC Cloud, and Qiskit simulators (Aer), with a strong
36
+ focus on clean, consistent logging, robust error handling, and standardized
37
+ header management using project/workspace context to improve maintainability and
38
+ clarity.
39
+
40
+ ## Features
41
+
42
+ - Provider and device factories for IBM Quantum, IBM Cloud, OQC Cloud, and
43
+ Qiskit Aer simulators.
44
+ - Circuit export and transpilation pipeline with asynchronous job submission.
45
+ - Consistent, context-rich logging across provider/device creation,
46
+ transpilation, job submission, and job fetching.
47
+ - Standardized header handling using project and workspace headers for backend
48
+ invocations.
49
+ - Improved error handling and diagnostics in critical execution paths.
50
+
51
+ ## Installation
52
+
53
+ Install via pip:
54
+
55
+ ```bash
56
+ pip install quapp-qiskit
57
+ ```
58
+
59
+ ## Recently Changes Highlights
60
+
61
+ - refactor: Remove unused timing logs and import from InvocationHandler.
62
+ - refactor: Replace set/map usage with set comprehension and enhance logging for
63
+ unsupported devices.
64
+ - refactor: Add support for project and workspace headers in backend invocation.
65
+ - refactor: Update logging to handle missing jobId gracefully.
66
+ - refactor: Improve logging across device and provider classes, enhance error
67
+ handling in key methods.
68
+ - chore: Bump a library version and update quapp-common dependency to the latest
69
+ development release.
70
+
71
+ For detailed usage and API references, please refer to the in-code documentation
72
+ or contact the maintainers.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ quapp_qiskit/__init__.py
5
+ quapp_qiskit.egg-info/PKG-INFO
6
+ quapp_qiskit.egg-info/SOURCES.txt
7
+ quapp_qiskit.egg-info/dependency_links.txt
8
+ quapp_qiskit.egg-info/requires.txt
9
+ quapp_qiskit.egg-info/top_level.txt
@@ -0,0 +1,13 @@
1
+ quapp-common==0.0.11.dev7
2
+ qiskit==0.45.3
3
+ oqc-qcaas-client==3.7.0
4
+ qiskit-aer-gpu==0.13.3
5
+ qiskit-ibm-provider==0.10.0
6
+ qiskit-ibm-runtime==0.19.1
7
+
8
+ [dev]
9
+ black
10
+ bumpver
11
+ isort
12
+ pip-tools
13
+ pytest
@@ -0,0 +1 @@
1
+ quapp_qiskit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+