vssh 3.3.6__tar.gz → 3.3.7__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.
- {vssh-3.3.6/vssh.egg-info → vssh-3.3.7}/PKG-INFO +1 -1
- {vssh-3.3.6 → vssh-3.3.7}/pyproject.toml +1 -1
- {vssh-3.3.6 → vssh-3.3.7/vssh.egg-info}/PKG-INFO +1 -1
- {vssh-3.3.6 → vssh-3.3.7}/vssh.py +9 -0
- {vssh-3.3.6 → vssh-3.3.7}/LICENSE +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/README.md +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/setup.cfg +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh.egg-info/SOURCES.txt +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh.egg-info/dependency_links.txt +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh.egg-info/entry_points.txt +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh.egg-info/top_level.txt +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh_mcp_server.py +0 -0
- {vssh-3.3.6 → vssh-3.3.7}/vssh_p2p.py +0 -0
|
@@ -3439,6 +3439,15 @@ WantedBy=multi-user.target
|
|
|
3439
3439
|
else:
|
|
3440
3440
|
print(f"[vssh install] ✗ Unsupported OS: {_plat.system()}")
|
|
3441
3441
|
|
|
3442
|
+
|
|
3443
|
+
def _get_vssh_version():
|
|
3444
|
+
try:
|
|
3445
|
+
from importlib.metadata import version as _v
|
|
3446
|
+
return _v('vssh')
|
|
3447
|
+
except Exception:
|
|
3448
|
+
return '?'
|
|
3449
|
+
|
|
3450
|
+
|
|
3442
3451
|
def main():
|
|
3443
3452
|
args = sys.argv[1:]
|
|
3444
3453
|
# Handle --version and --help flags
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|