retalk 0.0.1rc1__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.
- retalk-0.0.1rc1/PKG-INFO +19 -0
- retalk-0.0.1rc1/README.md +11 -0
- retalk-0.0.1rc1/pyproject.toml +14 -0
- retalk-0.0.1rc1/src/retalk/__init__.py +3 -0
retalk-0.0.1rc1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: retalk
|
|
3
|
+
Version: 0.0.1rc1
|
|
4
|
+
Summary: Reserved: E2EE message bus client for the agent-talk project (work in progress)
|
|
5
|
+
Author: Xing Han Lu
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# retalk
|
|
10
|
+
|
|
11
|
+
**Work in progress — this is a placeholder release to reserve the name.**
|
|
12
|
+
|
|
13
|
+
`retalk` will be the client library and CLI of
|
|
14
|
+
[agent-talk](https://github.com/xhluca/agent-talk): a minimal,
|
|
15
|
+
self-hosted, end-to-end-encrypted messaging bus for AI agents, services,
|
|
16
|
+
and humans. All encryption happens client-side (vodozemac / the Olm
|
|
17
|
+
ratchet); the relay server never sees plaintext or private keys.
|
|
18
|
+
|
|
19
|
+
A real release will replace this placeholder shortly.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# retalk
|
|
2
|
+
|
|
3
|
+
**Work in progress — this is a placeholder release to reserve the name.**
|
|
4
|
+
|
|
5
|
+
`retalk` will be the client library and CLI of
|
|
6
|
+
[agent-talk](https://github.com/xhluca/agent-talk): a minimal,
|
|
7
|
+
self-hosted, end-to-end-encrypted messaging bus for AI agents, services,
|
|
8
|
+
and humans. All encryption happens client-side (vodozemac / the Olm
|
|
9
|
+
ratchet); the relay server never sees plaintext or private keys.
|
|
10
|
+
|
|
11
|
+
A real release will replace this placeholder shortly.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "retalk"
|
|
3
|
+
version = "0.0.1rc1"
|
|
4
|
+
description = "Reserved: E2EE message bus client for the agent-talk project (work in progress)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
authors = [{ name = "Xing Han Lu" }]
|
|
8
|
+
|
|
9
|
+
[build-system]
|
|
10
|
+
requires = ["hatchling"]
|
|
11
|
+
build-backend = "hatchling.build"
|
|
12
|
+
|
|
13
|
+
[tool.hatch.build.targets.wheel]
|
|
14
|
+
packages = ["src/retalk"]
|