From cd2840e11d54c1ecb68c0a51a3dd352254607ae2 Mon Sep 17 00:00:00 2001 From: Dzmitry Prychyna Date: Sun, 9 Aug 2026 19:38:32 -0300 Subject: [PATCH] docs: link upstream ASET ecosystem --- MANIFEST.json | 8 ++++---- README.md | 9 +++++++++ pyproject.toml | 2 ++ 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/MANIFEST.json b/MANIFEST.json index 9759437..708efb3 100644 --- a/MANIFEST.json +++ b/MANIFEST.json @@ -138,8 +138,8 @@ }, { "path": "README.md", - "sha256": "sha256:13f9f77c6195cb088c33c267efbfa26fc2a5c741062983f8d9392d58ecbc3d8a", - "size_bytes": 5328 + "sha256": "sha256:b7ce659e5eb5ebf559198c58e08244579a4a6d410e871bfd07e3728612eef47d", + "size_bytes": 6090 }, { "path": "SECURITY.md", @@ -223,8 +223,8 @@ }, { "path": "pyproject.toml", - "sha256": "sha256:896d590a9041282342f8d2a03222065ad7dddf32b2c0ecdcd5bc8c95997d1d69", - "size_bytes": 1431 + "sha256": "sha256:4aa9f9e8590eeed7a4954e6c9091ecb0055c0cd594573e7e45deded25feacbb5", + "size_bytes": 1566 }, { "path": "requirements-dev.txt", diff --git a/README.md b/README.md index 14a3a63..98a2785 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,15 @@ it does not fork or reimplement Seed resolution semantics. - Transport profile: `ASET-NETWORK-PYSQL-HTTPS-ED25519-V1` - Implementation precedence: none +## Project lineage + +- Normative Seed specification: [ASET](https://github.com/attractor-set/ASET). +- Normative Network specification: [ASET Network Extension](https://github.com/attractor-set/aset-network-extension). +- Base non-normative Seed implementation: [aset-python-sqlite](https://github.com/attractor-set/aset-python-sqlite). +- This non-normative Network implementation: [aset-network-python-sqlite](https://github.com/attractor-set/aset-network-python-sqlite). + +This repository composes the pinned `aset-python-sqlite` implementation as its Seed layer and adds the pinned Network Extension profile. It does not fork, replace, or redefine Seed resolution semantics. Exact immutable upstream identities remain defined below in `Exact upstream bindings`. + ## Layering ```text diff --git a/pyproject.toml b/pyproject.toml index d0d5bb2..cc5f0b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,8 +26,10 @@ classifiers = [ ] [project.urls] +SeedSpecification = "https://github.com/attractor-set/ASET" SeedImplementation = "https://github.com/attractor-set/aset-python-sqlite" NetworkSpecification = "https://github.com/attractor-set/aset-network-extension" +Repository = "https://github.com/attractor-set/aset-network-python-sqlite" [project.scripts] aset-network-python-sqlite = "aset_network_python_sqlite.service:main"