qbraid-cli 0.8.0.dev1__py3-none-any.whl → 0.8.0.dev4__py3-none-any.whl
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.
Potentially problematic release.
This version of qbraid-cli might be problematic. Click here for more details.
- qbraid_cli/_version.py +2 -2
- qbraid_cli/configure/__init__.py +4 -1
- qbraid_cli/configure/actions.py +111 -0
- qbraid_cli/configure/app.py +11 -108
- qbraid_cli/credits/__init__.py +4 -1
- qbraid_cli/credits/app.py +12 -10
- qbraid_cli/devices/__init__.py +4 -1
- qbraid_cli/devices/app.py +43 -35
- qbraid_cli/devices/validation.py +27 -0
- qbraid_cli/envs/__init__.py +4 -1
- qbraid_cli/envs/activate.py +8 -5
- qbraid_cli/envs/app.py +38 -155
- qbraid_cli/envs/create.py +3 -0
- qbraid_cli/envs/data_handling.py +140 -0
- qbraid_cli/exceptions.py +3 -0
- qbraid_cli/handlers.py +8 -1
- qbraid_cli/jobs/__init__.py +4 -1
- qbraid_cli/jobs/app.py +69 -89
- qbraid_cli/jobs/toggle_braket.py +38 -39
- qbraid_cli/jobs/validation.py +93 -0
- qbraid_cli/kernels/__init__.py +4 -1
- qbraid_cli/kernels/app.py +81 -12
- qbraid_cli/main.py +15 -8
- {qbraid_cli-0.8.0.dev1.dist-info → qbraid_cli-0.8.0.dev4.dist-info}/METADATA +15 -9
- qbraid_cli-0.8.0.dev4.dist-info/RECORD +29 -0
- {qbraid_cli-0.8.0.dev1.dist-info → qbraid_cli-0.8.0.dev4.dist-info}/WHEEL +1 -1
- qbraid_cli-0.8.0.dev1.dist-info/RECORD +0 -25
- {qbraid_cli-0.8.0.dev1.dist-info → qbraid_cli-0.8.0.dev4.dist-info}/entry_points.txt +0 -0
- {qbraid_cli-0.8.0.dev1.dist-info → qbraid_cli-0.8.0.dev4.dist-info}/top_level.txt +0 -0
|
@@ -1,19 +1,22 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qbraid-cli
|
|
3
|
-
Version: 0.8.0.
|
|
3
|
+
Version: 0.8.0.dev4
|
|
4
4
|
Summary: Command Line Interface for interacting with all parts of the qBraid platform.
|
|
5
5
|
Author-email: qBraid Development Team <contact@qbraid.com>
|
|
6
6
|
License: Proprietary
|
|
7
7
|
Project-URL: Homepage, https://www.qbraid.com/
|
|
8
|
-
Project-URL: Documentation, https://docs.qbraid.com/projects/cli/en/
|
|
8
|
+
Project-URL: Documentation, https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html
|
|
9
9
|
Project-URL: Bug Tracker, https://github.com/qBraid/qBraid-Lab/issues
|
|
10
10
|
Project-URL: Discord, https://discord.gg/KugF6Cnncm
|
|
11
11
|
Project-URL: Launch on Lab, https://account.qbraid.com/?gitHubUrl=https://github.com/qBraid/qBraid-Lab.git
|
|
12
12
|
Keywords: qbraid,cli,quantum,cloud
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Intended Audience :: System Administrators
|
|
16
15
|
Classifier: Natural Language :: English
|
|
16
|
+
Classifier: License :: Other/Proprietary License
|
|
17
|
+
Classifier: Intended Audience :: System Administrators
|
|
18
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
19
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
17
20
|
Classifier: Programming Language :: Python
|
|
18
21
|
Classifier: Programming Language :: Python :: 3
|
|
19
22
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -23,11 +26,10 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
23
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
27
|
Requires-Python: >=3.9
|
|
25
28
|
Description-Content-Type: text/markdown
|
|
26
|
-
Requires-Dist: typer
|
|
27
|
-
Requires-Dist: rich
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist: qbraid ==0.5.1
|
|
29
|
+
Requires-Dist: typer >=0.12.1
|
|
30
|
+
Requires-Dist: rich >=10.11.0
|
|
31
|
+
Requires-Dist: jupyter-client <9.0.0,>=7.0.0
|
|
32
|
+
Requires-Dist: qbraid-core >=0.1.2
|
|
31
33
|
Provides-Extra: dev
|
|
32
34
|
Requires-Dist: black ; extra == 'dev'
|
|
33
35
|
Requires-Dist: isort ; extra == 'dev'
|
|
@@ -39,6 +41,8 @@ Requires-Dist: sphinx-rtd-theme <2.1,>=1.3 ; extra == 'docs'
|
|
|
39
41
|
Requires-Dist: docutils <0.21 ; extra == 'docs'
|
|
40
42
|
Requires-Dist: toml ; extra == 'docs'
|
|
41
43
|
Requires-Dist: build ; extra == 'docs'
|
|
44
|
+
Requires-Dist: m2r ; extra == 'docs'
|
|
45
|
+
Requires-Dist: typer ; extra == 'docs'
|
|
42
46
|
Provides-Extra: jobs
|
|
43
47
|
Requires-Dist: amazon-braket-sdk >=1.48.1 ; extra == 'jobs'
|
|
44
48
|
|
|
@@ -46,6 +50,8 @@ Requires-Dist: amazon-braket-sdk >=1.48.1 ; extra == 'jobs'
|
|
|
46
50
|
|
|
47
51
|
[](https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html)
|
|
48
52
|
[](https://pypi.org/project/qbraid-cli/)
|
|
53
|
+
[](https://pypi.org/project/qbraid-cli/)
|
|
54
|
+
[](https://pepy.tech/project/qbraid-cli)
|
|
49
55
|
[](https://github.com/qBraid/qBraid-Lab/issues)
|
|
50
56
|
[](https://discord.gg/KugF6Cnncm)
|
|
51
57
|
|
|
@@ -82,7 +88,7 @@ $ qbraid
|
|
|
82
88
|
|
|
83
89
|
- Use 'qbraid --version' to see the current version.
|
|
84
90
|
|
|
85
|
-
Reference Docs: https://docs.qbraid.com/projects/cli/en/
|
|
91
|
+
Reference Docs: https://docs.qbraid.com/projects/cli/en/stable/guide/overview.html
|
|
86
92
|
```
|
|
87
93
|
|
|
88
94
|
A qBraid CLI command has the following structure:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
qbraid_cli/_version.py,sha256=slOqxGpZ52igr23ftZbPTgtbqVPwjKuyUyILwEde3R4,424
|
|
3
|
+
qbraid_cli/exceptions.py,sha256=KjlhYJhSHMVazaNiBjD_Ur06w4sekP8zRsFzBdyIpno,672
|
|
4
|
+
qbraid_cli/handlers.py,sha256=i3vdRtdy4bZKg3j6fwfVMz1ddhMgzlc2hhmj-vewxpI,6542
|
|
5
|
+
qbraid_cli/main.py,sha256=ko3c8fkzwcNlNb0AFLFgwlSoOOC4DJgeHlRuHbz-dyw,2504
|
|
6
|
+
qbraid_cli/configure/__init__.py,sha256=6GU7vR6JYRGcMsmdrpFbwLO5VSUmnLgwSbtmGWMQND4,158
|
|
7
|
+
qbraid_cli/configure/actions.py,sha256=3rrWHaCAsogyx0Ll-lcjbSzldD4kPuz1z6VQiWebSWw,3203
|
|
8
|
+
qbraid_cli/configure/app.py,sha256=vcPu1Npf8sfGtWGQrjDJQG5vCdeUa3nlpEnZMlVLlWM,1615
|
|
9
|
+
qbraid_cli/credits/__init__.py,sha256=t-3XAJFAXiu_jI4sgjaIOuNne_AoSYaSEsi-SSRkvPw,154
|
|
10
|
+
qbraid_cli/credits/app.py,sha256=iHikmjx8pylMFNzHckuauOg-Nb9pS7xQq_H75ibVJig,774
|
|
11
|
+
qbraid_cli/devices/__init__.py,sha256=_PU3eMQRV4DkPw-oCmfCPh8EbVmgG76ieEKuNsY9Xqc,154
|
|
12
|
+
qbraid_cli/devices/app.py,sha256=zxSxrEQn7irkJoME4S_CBnRqWeB8cqPaBsIMfpdYFk0,2530
|
|
13
|
+
qbraid_cli/devices/validation.py,sha256=Zt0mdg4nXHz-7yGP3qH6UwVoF18yrqW_4jdS4kiFKsQ,810
|
|
14
|
+
qbraid_cli/envs/__init__.py,sha256=YgIoMWxfGqzmwfypO5JHYuCOu6BfFwb9NHgQel1IJM8,148
|
|
15
|
+
qbraid_cli/envs/activate.py,sha256=VpvVYSfQDlcmlNWJOgkLIQ2p8YXPPLG8Jbl5t8GHUDw,2140
|
|
16
|
+
qbraid_cli/envs/app.py,sha256=t6bRwJGy-M3PAu870ZsttsM8tpSB0OFasgCJiV9nTSA,8620
|
|
17
|
+
qbraid_cli/envs/create.py,sha256=uCRex_TcFYw26jUOU06Ta5I8Mq5pRqLVaOE6MxrrExs,4337
|
|
18
|
+
qbraid_cli/envs/data_handling.py,sha256=mTVzsj6KleeeYDKGhgD-IesF9KQQMSszKFSEo8Wrv9w,4001
|
|
19
|
+
qbraid_cli/jobs/__init__.py,sha256=bj9XmZ4JL8OtMMZbHIu-DPhpOMXGLSB-W1b0wO7wKro,148
|
|
20
|
+
qbraid_cli/jobs/app.py,sha256=kmg9mYla3Nd7EdjQlFu7IOvm7sejLNfPPA6Qeet-IfE,4898
|
|
21
|
+
qbraid_cli/jobs/toggle_braket.py,sha256=jlmVEGB30ZQmLePiKj48mCXltluUUb47BZlgZT85yuY,7718
|
|
22
|
+
qbraid_cli/jobs/validation.py,sha256=xNbjUggMhUs4wzkuRm4PuFPi_wrElYicUgYXLznHz3U,2983
|
|
23
|
+
qbraid_cli/kernels/__init__.py,sha256=VhpBota_v7OoiGxrPCqJU4XBVcolf81mbCYGSxXzVhc,154
|
|
24
|
+
qbraid_cli/kernels/app.py,sha256=ZJWVdKzCDfzGnA1pqp01vDbE7fh8p84jC-y6DDgWlxc,3373
|
|
25
|
+
qbraid_cli-0.8.0.dev4.dist-info/METADATA,sha256=zL1Ut9rcHVtO1mZeduN5dqpe9H5H_Wu8R3rn7t7NBww,5894
|
|
26
|
+
qbraid_cli-0.8.0.dev4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
27
|
+
qbraid_cli-0.8.0.dev4.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
|
|
28
|
+
qbraid_cli-0.8.0.dev4.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
|
|
29
|
+
qbraid_cli-0.8.0.dev4.dist-info/RECORD,,
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
qbraid_cli/_version.py,sha256=6sZFOQBaKgYedl2zgTJuRZS8q9esXcZKau0qZ-85DIs,424
|
|
3
|
-
qbraid_cli/exceptions.py,sha256=DBYxsO5rywFdjy-S_46gJ9B91H3hw4SLpR6kXr2wG58,602
|
|
4
|
-
qbraid_cli/handlers.py,sha256=_d3hwv8TuFueq6-gjNLK1-avup9v6X67MTNMpiLxucQ,6236
|
|
5
|
-
qbraid_cli/main.py,sha256=njcwwgOAT3-hmb2M8XiyodHG1GlIjbzEbrRC7PdF_rE,2234
|
|
6
|
-
qbraid_cli/configure/__init__.py,sha256=YhkIlsmZl0j1cIV8BMOarfMvZ99iwlTEG08UQoXz3P8,78
|
|
7
|
-
qbraid_cli/configure/app.py,sha256=YYScda-LXQyQQKh9Q_GveOIwXAOAAdLYUESQGRTJ_48,4796
|
|
8
|
-
qbraid_cli/credits/__init__.py,sha256=0aN2OWG8cobDlLqa_LoM1I6ateOHLJHmFLVqiGNv19c,76
|
|
9
|
-
qbraid_cli/credits/app.py,sha256=i6FGzq9KHqykfi5rtHOsDs3Sbx5FzKcEit0gR9ggldQ,737
|
|
10
|
-
qbraid_cli/devices/__init__.py,sha256=w7DYe_FQij4bOU01VNV6vH_p-yjtrlfvbP5ctdSLvkE,76
|
|
11
|
-
qbraid_cli/devices/app.py,sha256=jhasrMr750G3PnINmqa7jwCwgRSg1-yLvF6b07i_V6w,2125
|
|
12
|
-
qbraid_cli/envs/__init__.py,sha256=_w-W4bV-rEmiA0qgYYGeGMupd7lDVwvkjebubk7dmsw,73
|
|
13
|
-
qbraid_cli/envs/activate.py,sha256=50w_RLS8H2-RXv9mzv-bRU6CfwsKOuGlXBZsLwbTOV4,1929
|
|
14
|
-
qbraid_cli/envs/app.py,sha256=DsDYTWHeKAmv2Q-W99r96yv695Dp7gkXo8_gCd4ky6s,11989
|
|
15
|
-
qbraid_cli/envs/create.py,sha256=BhDZ8b4YzJJAeMd7039FjXtyhoVElOvRZDYmGWggXSs,4267
|
|
16
|
-
qbraid_cli/jobs/__init__.py,sha256=W7_dgrI8pLsku1H7KumlHaVURO-ZHnDA7bRuaKV0Qus,73
|
|
17
|
-
qbraid_cli/jobs/app.py,sha256=kJ3skTD5dnAbvxIvWqf7UWK7UCD9Bd9OqFisvr3idJI,5099
|
|
18
|
-
qbraid_cli/jobs/toggle_braket.py,sha256=2QyWMw0cG15itIWK5G6GBU7GTSfIviBDGe5-5Pc1cyw,7593
|
|
19
|
-
qbraid_cli/kernels/__init__.py,sha256=enVNsFCjbXqVppUU6aPmEe3YjfGhWXk4HmXwJbqDYpQ,76
|
|
20
|
-
qbraid_cli/kernels/app.py,sha256=zko4Z2Ok-YyFvo7o__P7nNW7VFtlxH9lA2wWn_Nt0YQ,1156
|
|
21
|
-
qbraid_cli-0.8.0.dev1.dist-info/METADATA,sha256=pqFzQ-pK-qnS2llxGHVRBLC4X8CAq_q7vvcTH33Q2gw,5431
|
|
22
|
-
qbraid_cli-0.8.0.dev1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
23
|
-
qbraid_cli-0.8.0.dev1.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
|
|
24
|
-
qbraid_cli-0.8.0.dev1.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
|
|
25
|
-
qbraid_cli-0.8.0.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|