cloudsmith-cli 1.11.1__py2.py3-none-any.whl → 1.12.1__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/main.py +22 -12
- cloudsmith_cli/cli/commands/mcp.py +432 -0
- cloudsmith_cli/cli/commands/metrics/entitlements.py +1 -1
- cloudsmith_cli/cli/commands/metrics/packages.py +1 -1
- cloudsmith_cli/cli/commands/upstream.py +1 -0
- cloudsmith_cli/cli/config.py +31 -1
- cloudsmith_cli/cli/decorators.py +47 -3
- cloudsmith_cli/cli/tests/commands/test_main.py +28 -0
- cloudsmith_cli/cli/tests/commands/test_mcp.py +357 -0
- cloudsmith_cli/cli/tests/commands/test_repos.py +3 -3
- cloudsmith_cli/core/mcp/__init__.py +0 -0
- cloudsmith_cli/core/mcp/data.py +17 -0
- cloudsmith_cli/core/mcp/server.py +792 -0
- cloudsmith_cli/core/ratelimits.py +1 -1
- cloudsmith_cli/core/tests/test_init.py +1 -1
- cloudsmith_cli/data/VERSION +1 -1
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/METADATA +7 -5
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/RECORD +23 -18
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/WHEEL +1 -1
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/entry_points.txt +0 -0
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/licenses/LICENSE +0 -0
- {cloudsmith_cli-1.11.1.dist-info → cloudsmith_cli-1.12.1.dist-info}/top_level.txt +0 -0
|
@@ -40,7 +40,7 @@ class RateLimitsInfo:
|
|
|
40
40
|
info.remaining = int(data["remaining"])
|
|
41
41
|
if "reset" in data:
|
|
42
42
|
info.reset = datetime.datetime.utcfromtimestamp(int(data["reset"]))
|
|
43
|
-
if "
|
|
43
|
+
if "throttled" in data:
|
|
44
44
|
info.throttled = bool(data["throttled"])
|
|
45
45
|
else:
|
|
46
46
|
info.throttled = info.remaining == 0
|
|
@@ -58,7 +58,7 @@ def mocked_update_refresh_attempted_at():
|
|
|
58
58
|
|
|
59
59
|
class TestInitialiseApi:
|
|
60
60
|
def setup_class(cls): # pylint: disable=no-self-argument
|
|
61
|
-
# For the purposes of these tests, we need to
|
|
61
|
+
# For the purposes of these tests, we need to explicitly call set_default(None) at the
|
|
62
62
|
# outset because other tests in the suite may have called initialise_api() already.
|
|
63
63
|
# Resetting Configuration._default to None here effectively reverts the
|
|
64
64
|
# Configuration class to its vanilla, unmodified behaviour/state.
|
cloudsmith_cli/data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.12.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudsmith-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.12.1
|
|
4
4
|
Summary: Cloudsmith Command-Line Interface (CLI)
|
|
5
5
|
Home-page: https://github.com/cloudsmith-io/cloudsmith-cli
|
|
6
6
|
Author: Cloudsmith Ltd
|
|
@@ -15,7 +15,6 @@ Classifier: Intended Audience :: System Administrators
|
|
|
15
15
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
16
|
Classifier: Operating System :: POSIX :: Linux
|
|
17
17
|
Classifier: Programming Language :: Python
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -24,15 +23,18 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
24
23
|
Classifier: Topic :: Internet
|
|
25
24
|
Classifier: Topic :: System :: Systems Administration
|
|
26
25
|
Classifier: Topic :: Utilities
|
|
27
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.10.0
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE
|
|
30
29
|
Requires-Dist: click!=8.3.0,>=8.1.8
|
|
31
30
|
Requires-Dist: click-configfile>=0.2.3
|
|
32
31
|
Requires-Dist: click-didyoumean>=0.0.3
|
|
33
32
|
Requires-Dist: click-spinner>=0.1.7
|
|
34
|
-
Requires-Dist:
|
|
33
|
+
Requires-Dist: json5>=0.9.0
|
|
34
|
+
Requires-Dist: cloudsmith-api<3.0,>=2.0.24
|
|
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
|
|
@@ -56,7 +58,7 @@ Dynamic: summary
|
|
|
56
58
|
[](https://cloudsmith.io/~cloudsmith/repos/cli/packages/detail/python/cloudsmith-cli/latest/xf=bdist_wheel;xn=cloudsmith-cli;xv=py2.py3/)
|
|
57
59
|
[](https://pypi.python.org/pypi/cloudsmith-cli)
|
|
58
60
|
[](https://pypi.python.org/pypi/cloudsmith-cli)
|
|
59
|
-
[](https://github.com/cloudsmith-io/cloudsmith-cli/actions/workflows/test.yml)
|
|
60
62
|
[](https://github.com/ambv/black)
|
|
61
63
|
|
|
62
64
|
|
|
@@ -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=JE4gYtwEniIygvOQrMkT0T7s_TOEcMX7TBgvnBr9OhM,14194
|
|
6
|
+
cloudsmith_cli/cli/decorators.py,sha256=9FdFyDL1q0pUHZ4PnZNDc7W-P584apNhromvULQEhoc,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
|
|
@@ -23,7 +23,8 @@ cloudsmith_cli/cli/commands/entitlements.py,sha256=qDod53h3tWoAHpDa8qOzVpo7Nowwz
|
|
|
23
23
|
cloudsmith_cli/cli/commands/help_.py,sha256=--_NwWZBZWfEnG6MzteaZO6u3IIlh3wufvGbh8JcSv4,226
|
|
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
|
-
cloudsmith_cli/cli/commands/main.py,sha256=
|
|
26
|
+
cloudsmith_cli/cli/commands/main.py,sha256=GHT2mdzCfI1Rlh0JVu5Q3CrorHNSy57sSAUXhs0gZvw,2188
|
|
27
|
+
cloudsmith_cli/cli/commands/mcp.py,sha256=QBaC2hZnlzMh2IOyICSa1QxKXJY67E_TgYIAgU-NMZY,13511
|
|
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
|
|
@@ -32,12 +33,12 @@ cloudsmith_cli/cli/commands/resync.py,sha256=jELS9Ok1vltvuRlVhlr2EQENSYr6HnFJHbo
|
|
|
32
33
|
cloudsmith_cli/cli/commands/status.py,sha256=cmzZTmzj67qyf4Cob_Cd1abxVpxHOHbTDH2RxvGQzUQ,2504
|
|
33
34
|
cloudsmith_cli/cli/commands/tags.py,sha256=K7B_OYGnDfQbAMc_Rcj6Xx-rS4dNzUqJEhVwuVlZG-0,11668
|
|
34
35
|
cloudsmith_cli/cli/commands/tokens.py,sha256=FLlQDF-qzFeBlnUIhoDwjNMUv03dbV-MZR8wFHiuw5k,8147
|
|
35
|
-
cloudsmith_cli/cli/commands/upstream.py,sha256=
|
|
36
|
+
cloudsmith_cli/cli/commands/upstream.py,sha256=Rfh3bTAyo49SraKQr2PAnSLM7rqnAl4_ta69IgX7DZY,15878
|
|
36
37
|
cloudsmith_cli/cli/commands/whoami.py,sha256=0rpXnXmii3viDSsmoXC__DsyY8X0mGi4Wxi_hKEjhTI,1680
|
|
37
38
|
cloudsmith_cli/cli/commands/metrics/__init__.py,sha256=w-FjDvifPvTgf1nwGpTuhzk5mLkqmfvA9utrPqSUSdM,98
|
|
38
39
|
cloudsmith_cli/cli/commands/metrics/command.py,sha256=-4ykfBJ8Ss6w8QoCqL0AZdhcF7ZmmahtvQ_5YTYif5c,510
|
|
39
|
-
cloudsmith_cli/cli/commands/metrics/entitlements.py,sha256=
|
|
40
|
-
cloudsmith_cli/cli/commands/metrics/packages.py,sha256=
|
|
40
|
+
cloudsmith_cli/cli/commands/metrics/entitlements.py,sha256=RfME-Ovgu7-Pk3MOliq0y5fuq8obGrNOeE-4Ol5hPIY,4337
|
|
41
|
+
cloudsmith_cli/cli/commands/metrics/packages.py,sha256=rEU_MfYhshQsp499LoBizxDkOJBuzOkxLrQk5EhfiBM,3912
|
|
41
42
|
cloudsmith_cli/cli/commands/policy/__init__.py,sha256=vWUlqzuIZisbaLdQM4Gx7aCAM2RKPUIHEC5_XTRY-oY,157
|
|
42
43
|
cloudsmith_cli/cli/commands/policy/command.py,sha256=crZQiXhT7w19h9Z8IFFhM3NyGCTHZ8tL4vpHR430fLo,527
|
|
43
44
|
cloudsmith_cli/cli/commands/policy/deny.py,sha256=Nb2rTfropRiK5-zvsxLQsTjlr1HpJkhlqD5_jG17ogk,7703
|
|
@@ -58,9 +59,10 @@ cloudsmith_cli/cli/tests/commands/test_check.py,sha256=_CJaDQjhXnDQimzLkhBS8wL6V
|
|
|
58
59
|
cloudsmith_cli/cli/tests/commands/test_download.py,sha256=VpD-T0GkqHzDZDGYwpN1tyCq6mgTkfdOmXQBfWdAm6E,12268
|
|
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
|
-
cloudsmith_cli/cli/tests/commands/test_main.py,sha256=
|
|
62
|
+
cloudsmith_cli/cli/tests/commands/test_main.py,sha256=HxSDfsbYU7Tmk_sGE2yuc_7hNrDQhR-f2TgA7Ez3O68,2260
|
|
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
|
-
cloudsmith_cli/cli/tests/commands/test_repos.py,sha256=
|
|
65
|
+
cloudsmith_cli/cli/tests/commands/test_repos.py,sha256=xA8tiZon1i6JnNOsPZO96K0wpFuTStOR4sMegGEKG_s,6738
|
|
64
66
|
cloudsmith_cli/cli/tests/commands/test_tokens.py,sha256=BnTBS5ChIvgb9-HSkxOdzVIo81C6QA8xhJ7vGposow8,4931
|
|
65
67
|
cloudsmith_cli/cli/tests/commands/test_upstream.py,sha256=AxlcRSf_ZAGBXbAu8t9LHoftTwFstSzyKN5rAEo0VoA,5435
|
|
66
68
|
cloudsmith_cli/cli/tests/commands/policy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -72,7 +74,7 @@ cloudsmith_cli/core/config.py,sha256=eFA92QQBhccF0SdRtBwG7nrFuU2AK_yWzA9e0TUcNfE
|
|
|
72
74
|
cloudsmith_cli/core/download.py,sha256=WFlTpyAR_L6Z5GXBaiA3QZ4ABLO2GS42rduSBn2JcUg,15153
|
|
73
75
|
cloudsmith_cli/core/keyring.py,sha256=v57SoE-5TaHsaMw7oCwM7ZuOVGPK1vAA2YsmWK35UAM,2310
|
|
74
76
|
cloudsmith_cli/core/pagination.py,sha256=acJgAumVoe-ef-Ie5m55z0VOn_xZagcHwSYsDLLbhtw,4553
|
|
75
|
-
cloudsmith_cli/core/ratelimits.py,sha256=
|
|
77
|
+
cloudsmith_cli/core/ratelimits.py,sha256=5FfMO9tRFDmsPXtotJ-qftNK1qCwUXZs0j5T354TadQ,2535
|
|
76
78
|
cloudsmith_cli/core/rest.py,sha256=T9SjVwly2I0IzTwBTUtj5c-Yc6I2nnsmUQpuztsuVnw,8061
|
|
77
79
|
cloudsmith_cli/core/utils.py,sha256=L3fUMKX-8XtNlXK51EOLfF4wGq45uoQMY74ZGedNu4A,2213
|
|
78
80
|
cloudsmith_cli/core/version.py,sha256=DB62XmdfzQ23EpsdcTMqSA4fCBVV2r7eRhloMqxr4KM,488
|
|
@@ -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=OwFCP7ohNxVr1qCUqo2havpcYWlnbpYMHTZiypuCzoA,28607
|
|
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
|
-
cloudsmith_cli/core/tests/test_init.py,sha256=
|
|
102
|
+
cloudsmith_cli/core/tests/test_init.py,sha256=UMYCD22-lezdMZpq30bXbvJilhzhq9EdagH8OQPkwS4,7184
|
|
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=1yN5jyQ2tGhy7poBJjLW9WAquSl74FeAp5uilzP4pTI,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.12.1.dist-info/licenses/LICENSE,sha256=eEz1wEWbBZFlc_n_P_55i4CCYgWgHYVJpQjnc6qbXOQ,11344
|
|
113
|
+
cloudsmith_cli-1.12.1.dist-info/METADATA,sha256=1jA0jk828IuVvLnPdlPGExngzGdL3MejvMZm4AzKexw,15895
|
|
114
|
+
cloudsmith_cli-1.12.1.dist-info/WHEEL,sha256=AeO2BvogYWm3eGaHCvhzmUYt8ia7KfURiHzO_1atlys,109
|
|
115
|
+
cloudsmith_cli-1.12.1.dist-info/entry_points.txt,sha256=lQfpZ8eDB4ye9iK_TRpGnABwkcUgKIS-sGlCjbI1j9s,69
|
|
116
|
+
cloudsmith_cli-1.12.1.dist-info/top_level.txt,sha256=9P2AQ4lqblgMVHk2VHuvZKH92H0o19w-qhr_x-5ifIQ,15
|
|
117
|
+
cloudsmith_cli-1.12.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|