convos-remote 0.8.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.
- convos_remote-0.8.1/PKG-INFO +27 -0
- convos_remote-0.8.1/README.md +13 -0
- convos_remote-0.8.1/pyproject.toml +29 -0
- convos_remote-0.8.1/setup.cfg +4 -0
- convos_remote-0.8.1/src/ai_convos_remote/__init__.py +522 -0
- convos_remote-0.8.1/src/ai_convos_remote/control.py +83 -0
- convos_remote-0.8.1/src/ai_convos_remote/projection.py +344 -0
- convos_remote-0.8.1/src/ai_convos_remote/protocol.py +157 -0
- convos_remote-0.8.1/src/ai_convos_remote/service.py +23 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/PKG-INFO +27 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/SOURCES.txt +13 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/dependency_links.txt +1 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/entry_points.txt +5 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/requires.txt +4 -0
- convos_remote-0.8.1/src/convos_remote.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: convos-remote
|
|
3
|
+
Version: 0.8.1
|
|
4
|
+
Summary: Encrypted personal and team synchronization client for convos
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Documentation, https://github.com/RobertBiehl/convos/blob/master/docs/remote.md
|
|
7
|
+
Project-URL: Repository, https://github.com/RobertBiehl/convos
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: convos<0.9,>=0.8
|
|
11
|
+
Requires-Dist: convos-redact<0.9,>=0.8
|
|
12
|
+
Requires-Dist: cryptography>=42.0.0
|
|
13
|
+
Requires-Dist: typer>=0.12.0
|
|
14
|
+
|
|
15
|
+
# convos-remote
|
|
16
|
+
|
|
17
|
+
Optional end-to-end encrypted personal and team synchronization for Convos.
|
|
18
|
+
The client encrypts locally, supports self-hosted relays, and keeps ordinary
|
|
19
|
+
archive retrieval local.
|
|
20
|
+
|
|
21
|
+
Install it with the required projection products:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv tool install --with convos-remote convos
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
See the [complete setup, recovery, and security documentation](https://github.com/RobertBiehl/convos/blob/master/docs/remote.md).
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# convos-remote
|
|
2
|
+
|
|
3
|
+
Optional end-to-end encrypted personal and team synchronization for Convos.
|
|
4
|
+
The client encrypts locally, supports self-hosted relays, and keeps ordinary
|
|
5
|
+
archive retrieval local.
|
|
6
|
+
|
|
7
|
+
Install it with the required projection products:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
uv tool install --with convos-remote convos
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
See the [complete setup, recovery, and security documentation](https://github.com/RobertBiehl/convos/blob/master/docs/remote.md).
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "convos-remote"
|
|
3
|
+
version = "0.8.1"
|
|
4
|
+
description = "Encrypted personal and team synchronization client for convos"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
dependencies = ["convos>=0.8,<0.9", "convos-redact>=0.8,<0.9", "cryptography>=42.0.0", "typer>=0.12.0"]
|
|
9
|
+
|
|
10
|
+
[project.urls]
|
|
11
|
+
Documentation = "https://github.com/RobertBiehl/convos/blob/master/docs/remote.md"
|
|
12
|
+
Repository = "https://github.com/RobertBiehl/convos"
|
|
13
|
+
|
|
14
|
+
[project.entry-points."convos.commands"]
|
|
15
|
+
remote = "ai_convos_remote:register"
|
|
16
|
+
|
|
17
|
+
[project.entry-points."convos.doctor"]
|
|
18
|
+
remote = "ai_convos_remote:doctor_status"
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["setuptools>=68"]
|
|
22
|
+
build-backend = "setuptools.build_meta"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
|
26
|
+
|
|
27
|
+
[tool.uv.sources]
|
|
28
|
+
convos = { workspace = true }
|
|
29
|
+
convos-redact = { workspace = true }
|