obsideo-cli 0.3.0__tar.gz → 0.3.1__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.3.0 → obsideo_cli-0.3.1}/PKG-INFO +5 -2
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/PKG-INFO +5 -2
- obsideo_cli-0.3.1/pyproject.toml +33 -0
- obsideo_cli-0.3.0/pyproject.toml +0 -27
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/README.md +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo/__init__.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo/__main__.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo/cli.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo/manifest.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo/sync.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/SOURCES.txt +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/dependency_links.txt +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/entry_points.txt +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/requires.txt +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_cli.egg-info/top_level.txt +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/__init__.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/config.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/crypto.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/identity.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/login.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/names.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/obsideo_core/storage.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/setup.cfg +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/tests/test_cli.py +0 -0
- {obsideo_cli-0.3.0 → obsideo_cli-0.3.1}/tests/test_core.py +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: obsideo-cli
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary: Obsideo Cloud - encrypted storage we can't read. Save, browse, and sync
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Obsideo Cloud - encrypted storage we can't read, for people and AI agents. 12 GB free, no card. Save, browse, and sync from your terminal; agent integration contract at obsideo.io/agents.md
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://obsideo.io
|
|
7
|
+
Project-URL: Documentation, https://obsideo.io/docs/
|
|
8
|
+
Project-URL: Agent integration (AGENTS.md), https://obsideo.io/agents.md
|
|
9
|
+
Keywords: encrypted storage,ai agents,agent storage,s3,backup,end-to-end encryption,object storage,free tier,cli,sync
|
|
7
10
|
Requires-Python: >=3.10
|
|
8
11
|
Description-Content-Type: text/markdown
|
|
9
12
|
Requires-Dist: boto3>=1.28
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: obsideo-cli
|
|
3
|
-
Version: 0.3.
|
|
4
|
-
Summary: Obsideo Cloud - encrypted storage we can't read. Save, browse, and sync
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Obsideo Cloud - encrypted storage we can't read, for people and AI agents. 12 GB free, no card. Save, browse, and sync from your terminal; agent integration contract at obsideo.io/agents.md
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://obsideo.io
|
|
7
|
+
Project-URL: Documentation, https://obsideo.io/docs/
|
|
8
|
+
Project-URL: Agent integration (AGENTS.md), https://obsideo.io/agents.md
|
|
9
|
+
Keywords: encrypted storage,ai agents,agent storage,s3,backup,end-to-end encryption,object storage,free tier,cli,sync
|
|
7
10
|
Requires-Python: >=3.10
|
|
8
11
|
Description-Content-Type: text/markdown
|
|
9
12
|
Requires-Dist: boto3>=1.28
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "obsideo-cli"
|
|
7
|
+
version = "0.3.1"
|
|
8
|
+
description = "Obsideo Cloud - encrypted storage we can't read, for people and AI agents. 12 GB free, no card. Save, browse, and sync from your terminal; agent integration contract at obsideo.io/agents.md"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
keywords = [
|
|
13
|
+
"encrypted storage", "ai agents", "agent storage", "s3", "backup",
|
|
14
|
+
"end-to-end encryption", "object storage", "free tier", "cli", "sync",
|
|
15
|
+
]
|
|
16
|
+
dependencies = [
|
|
17
|
+
"boto3>=1.28",
|
|
18
|
+
"cryptography>=41.0",
|
|
19
|
+
"certifi",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://obsideo.io"
|
|
24
|
+
Documentation = "https://obsideo.io/docs/"
|
|
25
|
+
"Agent integration (AGENTS.md)" = "https://obsideo.io/agents.md"
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
obsideo = "obsideo.cli:main"
|
|
29
|
+
obsideo-cli = "obsideo.cli:main"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["."]
|
|
33
|
+
include = ["obsideo*", "obsideo_core*"]
|
obsideo_cli-0.3.0/pyproject.toml
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=61"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "obsideo-cli"
|
|
7
|
-
version = "0.3.0"
|
|
8
|
-
description = "Obsideo Cloud - encrypted storage we can't read. Save, browse, and sync whatever you want, from your terminal."
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
requires-python = ">=3.10"
|
|
11
|
-
license = {text = "MIT"}
|
|
12
|
-
dependencies = [
|
|
13
|
-
"boto3>=1.28",
|
|
14
|
-
"cryptography>=41.0",
|
|
15
|
-
"certifi",
|
|
16
|
-
]
|
|
17
|
-
|
|
18
|
-
[project.urls]
|
|
19
|
-
Homepage = "https://obsideo.io"
|
|
20
|
-
|
|
21
|
-
[project.scripts]
|
|
22
|
-
obsideo = "obsideo.cli:main"
|
|
23
|
-
obsideo-cli = "obsideo.cli:main"
|
|
24
|
-
|
|
25
|
-
[tool.setuptools.packages.find]
|
|
26
|
-
where = ["."]
|
|
27
|
-
include = ["obsideo*", "obsideo_core*"]
|
|
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
|
|
File without changes
|