obsideo-cli 0.2.3__tar.gz → 0.2.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.
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/PKG-INFO +1 -1
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo/cli.py +5 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/PKG-INFO +1 -1
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/pyproject.toml +1 -1
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/README.md +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo/__init__.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo/__main__.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo/manifest.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo/sync.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/SOURCES.txt +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/dependency_links.txt +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/entry_points.txt +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/requires.txt +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_cli.egg-info/top_level.txt +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/__init__.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/config.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/crypto.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/identity.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/login.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/names.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/obsideo_core/storage.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/setup.cfg +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/tests/test_cli.py +0 -0
- {obsideo_cli-0.2.3 → obsideo_cli-0.2.4}/tests/test_core.py +0 -0
|
@@ -635,6 +635,11 @@ def _fetch_usage() -> dict | None:
|
|
|
635
635
|
def main():
|
|
636
636
|
argv = sys.argv[1:]
|
|
637
637
|
|
|
638
|
+
# Version (stdout, clean + parseable — handled before any chrome).
|
|
639
|
+
if argv and argv[0] in ("--version", "-V", "version"):
|
|
640
|
+
print(f"obsideo-cli {config.VERSION}")
|
|
641
|
+
return
|
|
642
|
+
|
|
638
643
|
# Branded banner on every init (stderr, TTY-gated). Skip for `admin` so
|
|
639
644
|
# operator tooling output stays clean.
|
|
640
645
|
if not (argv and argv[0] == "admin"):
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "obsideo-cli"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.4"
|
|
8
8
|
description = "Obsideo Cloud - encrypted storage we can't read. Save, browse, and sync whatever you want, from your terminal."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|