attacca 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.
- attacca-0.0.1/PKG-INFO +16 -0
- attacca-0.0.1/README.md +7 -0
- attacca-0.0.1/pyproject.toml +14 -0
- attacca-0.0.1/src/attacca/__init__.py +2 -0
attacca-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: attacca
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation for Attacca Protocol - an agent pool protocol for software-engineering work. In development.
|
|
5
|
+
Project-URL: Homepage, https://github.com/attacca-protocol
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# attacca
|
|
11
|
+
|
|
12
|
+
Name reservation for **Attacca Protocol** — an agent pool protocol for
|
|
13
|
+
software-engineering work: portable continuation state, typed task exchange,
|
|
14
|
+
capability-based routing, and evidence-verified results.
|
|
15
|
+
|
|
16
|
+
Under active development. Watch https://github.com/attacca-protocol
|
attacca-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# attacca
|
|
2
|
+
|
|
3
|
+
Name reservation for **Attacca Protocol** — an agent pool protocol for
|
|
4
|
+
software-engineering work: portable continuation state, typed task exchange,
|
|
5
|
+
capability-based routing, and evidence-verified results.
|
|
6
|
+
|
|
7
|
+
Under active development. Watch https://github.com/attacca-protocol
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "attacca"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reservation for Attacca Protocol - an agent pool protocol for software-engineering work. In development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://github.com/attacca-protocol"
|