cloudsmith-cli 1.10.3__py2.py3-none-any.whl → 1.11.0__py2.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.
- cloudsmith_cli/cli/commands/__init__.py +1 -0
- cloudsmith_cli/cli/commands/mcp.py +424 -0
- cloudsmith_cli/cli/config.py +31 -0
- cloudsmith_cli/cli/decorators.py +47 -3
- cloudsmith_cli/cli/tests/commands/test_mcp.py +357 -0
- cloudsmith_cli/core/mcp/__init__.py +0 -0
- cloudsmith_cli/core/mcp/data.py +17 -0
- cloudsmith_cli/core/mcp/server.py +779 -0
- cloudsmith_cli/data/VERSION +1 -1
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/METADATA +4 -2
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/RECORD +15 -10
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/WHEEL +0 -0
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/entry_points.txt +0 -0
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/licenses/LICENSE +0 -0
- {cloudsmith_cli-1.10.3.dist-info → cloudsmith_cli-1.11.0.dist-info}/top_level.txt +0 -0
cloudsmith_cli/data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.11.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudsmith-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.11.0
|
|
4
4
|
Summary: Cloudsmith Command-Line Interface (CLI)
|
|
5
5
|
Home-page: https://github.com/cloudsmith-io/cloudsmith-cli
|
|
6
6
|
Author: Cloudsmith Ltd
|
|
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
24
24
|
Classifier: Topic :: Internet
|
|
25
25
|
Classifier: Topic :: System :: Systems Administration
|
|
26
26
|
Classifier: Topic :: Utilities
|
|
27
|
-
Requires-Python: >=3.
|
|
27
|
+
Requires-Python: >=3.10.0
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE
|
|
30
30
|
Requires-Dist: click!=8.3.0,>=8.1.8
|
|
@@ -33,6 +33,8 @@ Requires-Dist: click-didyoumean>=0.0.3
|
|
|
33
33
|
Requires-Dist: click-spinner>=0.1.7
|
|
34
34
|
Requires-Dist: cloudsmith-api<3.0,>=2.0.22
|
|
35
35
|
Requires-Dist: keyring>=25.4.1
|
|
36
|
+
Requires-Dist: mcp==1.9.1
|
|
37
|
+
Requires-Dist: toon-python==0.1.2
|
|
36
38
|
Requires-Dist: requests>=2.18.4
|
|
37
39
|
Requires-Dist: requests_toolbelt>=1.0.0
|
|
38
40
|
Requires-Dist: semver>=2.7.9
|
|
@@ -2,8 +2,8 @@ cloudsmith_cli/__init__.py,sha256=os5rpSQxihzAz72UaZugFVGTE1MOaB2-ocgwVUStcRY,24
|
|
|
2
2
|
cloudsmith_cli/__main__.py,sha256=sWZCxOvdsp_Op1y4A7cyFVo-5fgQ667grmiy8FKX-5w,219
|
|
3
3
|
cloudsmith_cli/cli/__init__.py,sha256=GK3VaqGyKB8vkN501vzSah_cirIorR5qQpVMry5wv7Y,34
|
|
4
4
|
cloudsmith_cli/cli/command.py,sha256=K374dd1eDLTdQyRdqHE7PSKqhh4PbcrDxoUDVr_s23U,4816
|
|
5
|
-
cloudsmith_cli/cli/config.py,sha256=
|
|
6
|
-
cloudsmith_cli/cli/decorators.py,sha256=
|
|
5
|
+
cloudsmith_cli/cli/config.py,sha256=IbYU3KUllwhbddPIRWBK8TWllWnz0MHV1H_durzyxE4,14138
|
|
6
|
+
cloudsmith_cli/cli/decorators.py,sha256=l7gI3sM2eBXB-ddTlqMrHuzA5ZBi02uLiO1_ZWjC4Q0,12212
|
|
7
7
|
cloudsmith_cli/cli/exceptions.py,sha256=NjtRnF0cSzRIf6B2xuSxz3PdghGn0LPnnlsHUewA7Pc,6762
|
|
8
8
|
cloudsmith_cli/cli/saml.py,sha256=VluL-oM4mReXi0ycdFUQJQisNKo9limAiIjSVzGRBnM,3202
|
|
9
9
|
cloudsmith_cli/cli/table.py,sha256=S03d5izcsz8keKYP3Ep1C4i3sEwYigjUUCSkBKPskHw,1530
|
|
@@ -11,7 +11,7 @@ cloudsmith_cli/cli/types.py,sha256=89hPhNtUS1E6GnUxm_Lv_cj9OfNqI6G5s5gD-uRz1Dw,4
|
|
|
11
11
|
cloudsmith_cli/cli/utils.py,sha256=FY8begpgyhLJjEvE41N85CEmEeTGJzStn_lvodCkW3E,6326
|
|
12
12
|
cloudsmith_cli/cli/validators.py,sha256=J9ZEwGsahFQ5B7PT9Ioz4MlJNM6kd4D-X-7xK0US0pw,10003
|
|
13
13
|
cloudsmith_cli/cli/webserver.py,sha256=b2-Ei-s62lp9QyYPuZ4DhXwMcYKXobwQtfXT41gK0ek,8079
|
|
14
|
-
cloudsmith_cli/cli/commands/__init__.py,sha256=
|
|
14
|
+
cloudsmith_cli/cli/commands/__init__.py,sha256=lAn-IhMVbgipmVUCYlFA_fXJDDOae7p8wlQgagrSGYE,361
|
|
15
15
|
cloudsmith_cli/cli/commands/auth.py,sha256=xJKT10BbNSdQQUQc1OUyoMjOXCbP4oeIEusVI_AtKaw,3367
|
|
16
16
|
cloudsmith_cli/cli/commands/check.py,sha256=xfqWTOzT5zsdYIUPgKCF3TdhXoX3Koj0UPGyVLC8pSo,4105
|
|
17
17
|
cloudsmith_cli/cli/commands/copy.py,sha256=a2-4inh747i53dRtR_XngM3q2HNO6PAfd3qvaGILLnw,2777
|
|
@@ -24,6 +24,7 @@ cloudsmith_cli/cli/commands/help_.py,sha256=--_NwWZBZWfEnG6MzteaZO6u3IIlh3wufvGb
|
|
|
24
24
|
cloudsmith_cli/cli/commands/list_.py,sha256=GtlYAtMOlcmYQBzFG5NrZl4mQX0juN-3HLqZZkCNQNA,10039
|
|
25
25
|
cloudsmith_cli/cli/commands/login.py,sha256=seIutJQhu4Gk7tLTGWiSVHs53eiLr_zydEfvuuWJUFo,3486
|
|
26
26
|
cloudsmith_cli/cli/commands/main.py,sha256=3KRh_uwdBxKfBSZugQ9y7LbZb3D0EtiB6PmYFCqeDG4,1896
|
|
27
|
+
cloudsmith_cli/cli/commands/mcp.py,sha256=0z_k6I56rSUFy7bGEGypSsHxiSL6ES4DAGKXtZf58oY,12983
|
|
27
28
|
cloudsmith_cli/cli/commands/move.py,sha256=7jGyWvYed-B_i522MRR1h3EVvx-Uy8zdgDKnYCFHkQQ,3120
|
|
28
29
|
cloudsmith_cli/cli/commands/push.py,sha256=fH9uYJ4sOslvSOchBzd1yRjVPc0x07RGsPITOMQpqiw,22256
|
|
29
30
|
cloudsmith_cli/cli/commands/quarantine.py,sha256=NNWoCk5njAvbTpsed0ElR2LEPWSfXwyWbeC7HCRqbf4,4593
|
|
@@ -59,6 +60,7 @@ cloudsmith_cli/cli/tests/commands/test_download.py,sha256=VpD-T0GkqHzDZDGYwpN1ty
|
|
|
59
60
|
cloudsmith_cli/cli/tests/commands/test_entitlements.py,sha256=Xd-sRdQPMccqlSiPBp7fGeyUCBuYGLCD-3zeVPD3Mxw,737
|
|
60
61
|
cloudsmith_cli/cli/tests/commands/test_login.py,sha256=RlvPMaS2rTLah2dVF3Yt8gjG1HWEkD6zP_exzUvc1U0,1309
|
|
61
62
|
cloudsmith_cli/cli/tests/commands/test_main.py,sha256=JmtJQ455OcqqEi0ostP8nMs0S4oXs4dkEFzPCGliqg8,947
|
|
63
|
+
cloudsmith_cli/cli/tests/commands/test_mcp.py,sha256=PfvytYPGsIdNyB_V-DPXbYX6Eq6NMQdoImHnZtOuIGQ,13534
|
|
62
64
|
cloudsmith_cli/cli/tests/commands/test_package_commands.py,sha256=vpp8TN4cbATxPEPY5GSEvHzZxdp-BaxHmcxflz-Bp6o,5943
|
|
63
65
|
cloudsmith_cli/cli/tests/commands/test_repos.py,sha256=z0SsWzeBJ8K-y0fYjXvP9vnE-hfBFllql-5RiAYy7Ks,6738
|
|
64
66
|
cloudsmith_cli/cli/tests/commands/test_tokens.py,sha256=BnTBS5ChIvgb9-HSkxOdzVIo81C6QA8xhJ7vGposow8,4931
|
|
@@ -92,21 +94,24 @@ cloudsmith_cli/core/api/status.py,sha256=DcWXhizY0qS7vFNt856OqMvu0fDB5ISiRC16utK
|
|
|
92
94
|
cloudsmith_cli/core/api/upstreams.py,sha256=zHXW1CAAIPIetv8D8F338Vs0r8lxzLfmN6hLP9fLANA,2275
|
|
93
95
|
cloudsmith_cli/core/api/user.py,sha256=wZCHInqTx0TQv2_uteMFHSByn3QP5gWU-4DXtFgI7MI,2966
|
|
94
96
|
cloudsmith_cli/core/api/version.py,sha256=zgmmTSfD3TDX_QHhuU4GyqaZvrSzpqhwTbuBfrlUYj8,342
|
|
97
|
+
cloudsmith_cli/core/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
+
cloudsmith_cli/core/mcp/data.py,sha256=e-nHsm24nWasl5xvRhsYq9SrlmcVjBBOKRyj2bzN8MI,372
|
|
99
|
+
cloudsmith_cli/core/mcp/server.py,sha256=CEtI8gHxebncdlxgJwY7QXWUqReDCVjzDoDy2SsVQTM,28156
|
|
95
100
|
cloudsmith_cli/core/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
101
|
cloudsmith_cli/core/tests/test_download.py,sha256=hGVVMf6IO4UCWwkTPc2JROedQXhzphs5OD0lDhM7SXo,15784
|
|
97
102
|
cloudsmith_cli/core/tests/test_init.py,sha256=CDdCI-ko09I3ltBeFNACGrfNFDNT8zhXUE9J9jYbBbg,7183
|
|
98
103
|
cloudsmith_cli/core/tests/test_keyring.py,sha256=cLmZjhj21gm2fdi-l95yOxQPWuq_XVVNeY3s9QSNvYc,7076
|
|
99
104
|
cloudsmith_cli/core/tests/test_rest.py,sha256=SXOZfz_YLrxtuE8I07MUWVUYxyz79VHfpYzc18QQM4s,2563
|
|
100
105
|
cloudsmith_cli/core/tests/test_version.py,sha256=k9QAjOKJ7Q5mfGSahRvtpPN0XDaGOhbbpHngqAIuM34,552
|
|
101
|
-
cloudsmith_cli/data/VERSION,sha256=
|
|
106
|
+
cloudsmith_cli/data/VERSION,sha256=dO5NEhRjmJGD-am4SFd-skNPP10JXeKksZe_Kf-iOZs,7
|
|
102
107
|
cloudsmith_cli/data/config.ini,sha256=nD39yE9-GyKSxJ5Us5V_bRjAsdhDbD5HnwRNDKeMfR4,737
|
|
103
108
|
cloudsmith_cli/data/credentials.ini,sha256=UTgXGXigPdlWUQxhQnalSJ18cLswQv6l26y7ZlYstCU,500
|
|
104
109
|
cloudsmith_cli/templates/__init__.py,sha256=00xHj3iW0vXmI5rzjbryJllE1VHhg6Dxf7uqo9dIyvo,53
|
|
105
110
|
cloudsmith_cli/templates/auth_error.html,sha256=qBdZ0TE88IFaVk0NIpSPZudDDf0PxAJnnqAyPz5KODo,1290
|
|
106
111
|
cloudsmith_cli/templates/auth_success.html,sha256=UA629tjTJmIQ_y9eJ-a5Wfp0ilo8cgSsUqjHiCzEhq0,1056
|
|
107
|
-
cloudsmith_cli-1.
|
|
108
|
-
cloudsmith_cli-1.
|
|
109
|
-
cloudsmith_cli-1.
|
|
110
|
-
cloudsmith_cli-1.
|
|
111
|
-
cloudsmith_cli-1.
|
|
112
|
-
cloudsmith_cli-1.
|
|
112
|
+
cloudsmith_cli-1.11.0.dist-info/licenses/LICENSE,sha256=eEz1wEWbBZFlc_n_P_55i4CCYgWgHYVJpQjnc6qbXOQ,11344
|
|
113
|
+
cloudsmith_cli-1.11.0.dist-info/METADATA,sha256=LcWvT4-p3E_VWkQ7FHsNnwP7lvae1vHUzNVTSZ2fLWg,15871
|
|
114
|
+
cloudsmith_cli-1.11.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
115
|
+
cloudsmith_cli-1.11.0.dist-info/entry_points.txt,sha256=lQfpZ8eDB4ye9iK_TRpGnABwkcUgKIS-sGlCjbI1j9s,69
|
|
116
|
+
cloudsmith_cli-1.11.0.dist-info/top_level.txt,sha256=9P2AQ4lqblgMVHk2VHuvZKH92H0o19w-qhr_x-5ifIQ,15
|
|
117
|
+
cloudsmith_cli-1.11.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|