web3-agent-reputation 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.
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: web3-agent-reputation
3
+ Version: 0.0.1
4
+ Summary: Reserved: web3.py external module for ERC-8004 Trustless Agents — typed registry reads + a policy-driven reputation calculator. Under active development.
5
+ Project-URL: Repository, https://github.com/hanjoonchoe/agent-reputation-sdk
6
+ License: MIT
7
+ Keywords: ai-agents,erc-8004,ethereum,reputation,trustless-agents,web3
8
+ Requires-Python: >=3.9
9
+ Description-Content-Type: text/markdown
10
+
11
+ # web3-agent-reputation
12
+
13
+ **Name reserved — under active development.**
14
+
15
+ Ethereum SDK extensions for [ERC-8004: Trustless Agents](https://eips.ethereum.org/EIPS/eip-8004): typed registry reads plus a policy-driven reputation calculator, shipped as a web3.py external module.
16
+
17
+ - Repository & design: https://github.com/hanjoonchoe/agent-reputation-sdk
18
+ - TypeScript counterpart: `agent-reputation` (npm)
19
+ - Principles: read-only forever · never a bare scalar (expectation ± uncertainty + evidence + caveats) · cross-language golden test vectors
20
+
21
+ First real release: `0.1.0`.
@@ -0,0 +1,11 @@
1
+ # web3-agent-reputation
2
+
3
+ **Name reserved — under active development.**
4
+
5
+ Ethereum SDK extensions for [ERC-8004: Trustless Agents](https://eips.ethereum.org/EIPS/eip-8004): typed registry reads plus a policy-driven reputation calculator, shipped as a web3.py external module.
6
+
7
+ - Repository & design: https://github.com/hanjoonchoe/agent-reputation-sdk
8
+ - TypeScript counterpart: `agent-reputation` (npm)
9
+ - Principles: read-only forever · never a bare scalar (expectation ± uncertainty + evidence + caveats) · cross-language golden test vectors
10
+
11
+ First real release: `0.1.0`.
@@ -0,0 +1,18 @@
1
+ [project]
2
+ name = "web3-agent-reputation"
3
+ version = "0.0.1"
4
+ description = "Reserved: web3.py external module for ERC-8004 Trustless Agents — typed registry reads + a policy-driven reputation calculator. Under active development."
5
+ readme = "README.md"
6
+ license = { text = "MIT" }
7
+ requires-python = ">=3.9"
8
+ keywords = ["erc-8004", "trustless-agents", "reputation", "web3", "ethereum", "ai-agents"]
9
+
10
+ [project.urls]
11
+ Repository = "https://github.com/hanjoonchoe/agent-reputation-sdk"
12
+
13
+ [build-system]
14
+ requires = ["hatchling"]
15
+ build-backend = "hatchling.build"
16
+
17
+ [tool.hatch.build.targets.wheel]
18
+ packages = ["src/web3_agent_reputation"]
@@ -0,0 +1,7 @@
1
+ """web3-agent-reputation — name reserved, under active development.
2
+
3
+ Ethereum SDK extension (web3.py external module) for ERC-8004 Trustless Agents.
4
+ See https://github.com/hanjoonchoe/agent-reputation-sdk
5
+ """
6
+
7
+ __version__ = "0.0.1"