mcpzero-cli 0.1.2__tar.gz → 0.1.4__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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcpzero-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: MCPZERO tunnel CLI — installs the prebuilt mcpzero binary for your platform.
|
|
5
5
|
Project-URL: Homepage, https://mcpzero.io
|
|
6
|
-
Project-URL: Source, https://github.com/mcpzero/
|
|
6
|
+
Project-URL: Source, https://github.com/mcpzero/mcpzero
|
|
7
7
|
Author: MCPZERO
|
|
8
8
|
License: MIT
|
|
9
9
|
Requires-Python: >=3.8
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This package does not bundle the binary. On first run it downloads the prebuilt
|
|
4
4
|
``mcpzero`` binary matching this package version and the host platform from the
|
|
5
|
-
|
|
5
|
+
mcpzero repo's GitHub Releases, caches it, then execs it.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
8
|
from __future__ import annotations
|
|
@@ -20,7 +20,7 @@ from pathlib import Path
|
|
|
20
20
|
|
|
21
21
|
# GitHub Release assets: <base>/v<version>/mcpzero_<version>_<os>_<arch>.<ext>
|
|
22
22
|
BASE_URL = os.environ.get(
|
|
23
|
-
"MCPZERO_BASE_URL", "https://github.com/mcpzero/
|
|
23
|
+
"MCPZERO_BASE_URL", "https://github.com/mcpzero/mcpzero/releases/download"
|
|
24
24
|
).rstrip("/")
|
|
25
25
|
|
|
26
26
|
_OS_MAP = {"darwin": "darwin", "linux": "linux", "windows": "windows"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mcpzero-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "MCPZERO tunnel CLI — installs the prebuilt mcpzero binary for your platform."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -9,7 +9,7 @@ authors = [{ name = "MCPZERO" }]
|
|
|
9
9
|
|
|
10
10
|
[project.urls]
|
|
11
11
|
Homepage = "https://mcpzero.io"
|
|
12
|
-
Source = "https://github.com/mcpzero/
|
|
12
|
+
Source = "https://github.com/mcpzero/mcpzero"
|
|
13
13
|
|
|
14
14
|
[project.scripts]
|
|
15
15
|
mcpzero = "mcpzero_cli:main"
|
|
File without changes
|
|
File without changes
|