layr0 0.0.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.
- layr0-0.0.1/PKG-INFO +28 -0
- layr0-0.0.1/README.md +12 -0
- layr0-0.0.1/pyproject.toml +26 -0
- layr0-0.0.1/src/layr0/__init__.py +7 -0
layr0-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: layr0
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for layr0 — cryptographic identity, attestation, and end-to-end encrypted messaging for AI agents. Real package coming soon.
|
|
5
|
+
Project-URL: Homepage, https://layr0.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/multimail-dev/layr0-core
|
|
7
|
+
Author: Ghst Particle, LLC
|
|
8
|
+
License-Expression: AGPL-3.0-only
|
|
9
|
+
Keywords: agent,cryptography,did,ed25519,identity,x25519
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
13
|
+
Classifier: Topic :: Security :: Cryptography
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# layr0
|
|
18
|
+
|
|
19
|
+
**Placeholder — the real package is coming soon.**
|
|
20
|
+
|
|
21
|
+
`layr0` is cryptographic identity, attestation, and end-to-end encrypted
|
|
22
|
+
messaging for AI agent-to-agent communication. An agent *is* its keypair.
|
|
23
|
+
|
|
24
|
+
This `0.0.1` release only reserves the name. See **https://layr0.dev** for the
|
|
25
|
+
project, and [multimail-dev/layr0-core](https://github.com/multimail-dev/layr0-core)
|
|
26
|
+
for source.
|
|
27
|
+
|
|
28
|
+
Licensed AGPL-3.0-only (commercial dual-license available).
|
layr0-0.0.1/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# layr0
|
|
2
|
+
|
|
3
|
+
**Placeholder — the real package is coming soon.**
|
|
4
|
+
|
|
5
|
+
`layr0` is cryptographic identity, attestation, and end-to-end encrypted
|
|
6
|
+
messaging for AI agent-to-agent communication. An agent *is* its keypair.
|
|
7
|
+
|
|
8
|
+
This `0.0.1` release only reserves the name. See **https://layr0.dev** for the
|
|
9
|
+
project, and [multimail-dev/layr0-core](https://github.com/multimail-dev/layr0-core)
|
|
10
|
+
for source.
|
|
11
|
+
|
|
12
|
+
Licensed AGPL-3.0-only (commercial dual-license available).
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "layr0"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder for layr0 — cryptographic identity, attestation, and end-to-end encrypted messaging for AI agents. Real package coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "AGPL-3.0-only"
|
|
12
|
+
authors = [{ name = "Ghst Particle, LLC" }]
|
|
13
|
+
keywords = ["cryptography", "ed25519", "x25519", "did", "identity", "agent"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
18
|
+
"Topic :: Security :: Cryptography",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://layr0.dev"
|
|
23
|
+
Repository = "https://github.com/multimail-dev/layr0-core"
|
|
24
|
+
|
|
25
|
+
[tool.hatch.build.targets.wheel]
|
|
26
|
+
packages = ["src/layr0"]
|