ilc-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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: ilc-protocol
3
+ Version: 0.1.0
4
+ Summary: Intelligent Labor Coin — full protocol stack (CLI + runtime)
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
+ # ilc-protocol
12
+
13
+ Full protocol stack for the Intelligent Labor Coin (ILC) — an open-source epistemic graph protocol for verifiable knowledge attribution.
14
+
15
+ ```bash
16
+ pip install ilc-protocol
17
+ ```
18
+
19
+ This package depends on `ilc-core` and exposes the `ilc` CLI entry point.
@@ -0,0 +1,9 @@
1
+ # ilc-protocol
2
+
3
+ Full protocol stack for the Intelligent Labor Coin (ILC) — an open-source epistemic graph protocol for verifiable knowledge attribution.
4
+
5
+ ```bash
6
+ pip install ilc-protocol
7
+ ```
8
+
9
+ This package depends on `ilc-core` and exposes the `ilc` CLI entry point.
File without changes
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: ilc-protocol
3
+ Version: 0.1.0
4
+ Summary: Intelligent Labor Coin — full protocol stack (CLI + runtime)
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
+ # ilc-protocol
12
+
13
+ Full protocol stack for the Intelligent Labor Coin (ILC) — an open-source epistemic graph protocol for verifiable knowledge attribution.
14
+
15
+ ```bash
16
+ pip install ilc-protocol
17
+ ```
18
+
19
+ This package depends on `ilc-core` and exposes the `ilc` CLI entry point.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ ilc_protocol/__init__.py
4
+ ilc_protocol.egg-info/PKG-INFO
5
+ ilc_protocol.egg-info/SOURCES.txt
6
+ ilc_protocol.egg-info/dependency_links.txt
7
+ ilc_protocol.egg-info/entry_points.txt
8
+ ilc_protocol.egg-info/requires.txt
9
+ ilc_protocol.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ilc = ilc_core.cli.main:main
@@ -0,0 +1 @@
1
+ ilc-core>=0.1.0
@@ -0,0 +1 @@
1
+ ilc_protocol
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "ilc-protocol"
7
+ version = "0.1.0"
8
+ description = "Intelligent Labor Coin — full protocol stack (CLI + runtime)"
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/"
16
+
17
+ [project.scripts]
18
+ ilc = "ilc_core.cli.main:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+