genesis-protocol 0.1.0__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.
- genesis_protocol-0.1.0/PKG-INFO +21 -0
- genesis_protocol-0.1.0/README.md +11 -0
- genesis_protocol-0.1.0/genesis_protocol/__init__.py +0 -0
- genesis_protocol-0.1.0/genesis_protocol.egg-info/PKG-INFO +21 -0
- genesis_protocol-0.1.0/genesis_protocol.egg-info/SOURCES.txt +8 -0
- genesis_protocol-0.1.0/genesis_protocol.egg-info/dependency_links.txt +1 -0
- genesis_protocol-0.1.0/genesis_protocol.egg-info/requires.txt +1 -0
- genesis_protocol-0.1.0/genesis_protocol.egg-info/top_level.txt +1 -0
- genesis_protocol-0.1.0/pyproject.toml +15 -0
- genesis_protocol-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genesis-protocol
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: ILC Genesis Agent bootstrap — identity ceremony and network initialization
|
|
5
|
+
License: AGPL-3.0-only
|
|
6
|
+
Project-URL: Homepage, https://pypi.org/project/ilc-core/
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: ilc-core>=0.1.0
|
|
10
|
+
|
|
11
|
+
# genesis-protocol
|
|
12
|
+
|
|
13
|
+
Genesis Agent bootstrap package for the Intelligent Labor Coin (ILC) protocol.
|
|
14
|
+
|
|
15
|
+
Handles identity ceremony and network initialization for ILC genesis agents.
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install genesis-protocol
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Depends on `ilc-core`.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# genesis-protocol
|
|
2
|
+
|
|
3
|
+
Genesis Agent bootstrap package for the Intelligent Labor Coin (ILC) protocol.
|
|
4
|
+
|
|
5
|
+
Handles identity ceremony and network initialization for ILC genesis agents.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install genesis-protocol
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Depends on `ilc-core`.
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genesis-protocol
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: ILC Genesis Agent bootstrap — identity ceremony and network initialization
|
|
5
|
+
License: AGPL-3.0-only
|
|
6
|
+
Project-URL: Homepage, https://pypi.org/project/ilc-core/
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: ilc-core>=0.1.0
|
|
10
|
+
|
|
11
|
+
# genesis-protocol
|
|
12
|
+
|
|
13
|
+
Genesis Agent bootstrap package for the Intelligent Labor Coin (ILC) protocol.
|
|
14
|
+
|
|
15
|
+
Handles identity ceremony and network initialization for ILC genesis agents.
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install genesis-protocol
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Depends on `ilc-core`.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
genesis_protocol/__init__.py
|
|
4
|
+
genesis_protocol.egg-info/PKG-INFO
|
|
5
|
+
genesis_protocol.egg-info/SOURCES.txt
|
|
6
|
+
genesis_protocol.egg-info/dependency_links.txt
|
|
7
|
+
genesis_protocol.egg-info/requires.txt
|
|
8
|
+
genesis_protocol.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ilc-core>=0.1.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
genesis_protocol
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "genesis-protocol"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "ILC Genesis Agent bootstrap — identity ceremony and network initialization"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "AGPL-3.0-only"}
|
|
12
|
+
dependencies = ["ilc-core>=0.1.0"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://pypi.org/project/ilc-core/"
|