map-protocol 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.
- map_protocol-0.0.1/PKG-INFO +8 -0
- map_protocol-0.0.1/README.md +7 -0
- map_protocol-0.0.1/map1/__init__.py +6 -0
- map_protocol-0.0.1/map_protocol.egg-info/PKG-INFO +8 -0
- map_protocol-0.0.1/map_protocol.egg-info/SOURCES.txt +7 -0
- map_protocol-0.0.1/map_protocol.egg-info/dependency_links.txt +1 -0
- map_protocol-0.0.1/map_protocol.egg-info/top_level.txt +1 -0
- map_protocol-0.0.1/pyproject.toml +14 -0
- map_protocol-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: map-protocol
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MAP v1: deterministic identity for structured data. Full release coming soon.
|
|
5
|
+
Author: Aaron Gerard Davidson
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/map-protocol/map1
|
|
8
|
+
Requires-Python: >=3.9
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: map-protocol
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MAP v1: deterministic identity for structured data. Full release coming soon.
|
|
5
|
+
Author: Aaron Gerard Davidson
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/map-protocol/map1
|
|
8
|
+
Requires-Python: >=3.9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
map1
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "map-protocol"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "MAP v1: deterministic identity for structured data. Full release coming soon."
|
|
9
|
+
license = "MIT"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
authors = [{ name = "Aaron Gerard Davidson" }]
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://github.com/map-protocol/map1"
|