swarmauri_xmp_webp 0.1.1.dev47__tar.gz → 0.1.2.dev2__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.
- {swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/PKG-INFO +17 -18
- {swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/README.md +10 -12
- {swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/pyproject.toml +7 -6
- {swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/LICENSE +0 -0
- {swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/swarmauri_xmp_webp/__init__.py +0 -0
|
@@ -1,44 +1,43 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: swarmauri_xmp_webp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2.dev2
|
|
4
4
|
Summary: WebP handler scaffold for embedding and extracting XMP packets in Swarmauri runtimes.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Keywords: swarmauri,sdk,standards,xmp,webp
|
|
8
8
|
Author: Jacob Stewart
|
|
9
9
|
Author-email: jacob@swarmauri.com
|
|
10
|
-
Requires-Python: >=3.10,<3.
|
|
10
|
+
Requires-Python: >=3.10,<3.15
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
12
|
Classifier: Natural Language :: English
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
17
13
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
18
14
|
Classifier: Programming Language :: Python
|
|
19
15
|
Classifier: Programming Language :: Python :: 3
|
|
20
16
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
21
22
|
Requires-Dist: swarmauri_base
|
|
22
23
|
Requires-Dist: swarmauri_core
|
|
23
24
|
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
|
|
24
25
|
Description-Content-Type: text/markdown
|
|
25
26
|
|
|
26
|
-

|
|
28
28
|
|
|
29
29
|
<p align="center">
|
|
30
|
-
<a href="https://
|
|
31
|
-
<img src="https://
|
|
30
|
+
<a href="https://pepy.tech/project/swarmauri_xmp_webp/">
|
|
31
|
+
<img src="https://static.pepy.tech/badge/swarmauri_xmp_webp/month" alt="PyPI - Downloads"/></a>
|
|
32
32
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_xmp_webp/">
|
|
33
33
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_xmp_webp.svg"/></a>
|
|
34
34
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
35
|
-
<img src="https://img.shields.io/
|
|
35
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
36
36
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
37
37
|
<img src="https://img.shields.io/pypi/l/swarmauri_xmp_webp" alt="PyPI - License"/></a>
|
|
38
38
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
39
39
|
<img src="https://img.shields.io/pypi/v/swarmauri_xmp_webp?label=swarmauri_xmp_webp&color=green" alt="PyPI - swarmauri_xmp_webp"/></a>
|
|
40
40
|
</p>
|
|
41
|
-
|
|
42
41
|
---
|
|
43
42
|
|
|
44
43
|
# swarmauri_xmp_webp
|
|
@@ -47,9 +46,9 @@ Description-Content-Type: text/markdown
|
|
|
47
46
|
|
|
48
47
|
## Features
|
|
49
48
|
|
|
50
|
-
- **Forward compatible**
|
|
51
|
-
- **Registry aligned**
|
|
52
|
-
- **Clear contracts**
|
|
49
|
+
- **Forward compatible** – establishes class signatures today so future implementations slot straight into existing workflows.
|
|
50
|
+
- **Registry aligned** – inherits from `EmbedXmpBase`, enabling automatic discovery through Swarmauri's dynamic registry.
|
|
51
|
+
- **Clear contracts** – raises `NotImplementedError` for read/write/remove until the RIFF logic is complete.
|
|
53
52
|
|
|
54
53
|
## Installation
|
|
55
54
|
|
|
@@ -77,9 +76,9 @@ except NotImplementedError:
|
|
|
77
76
|
|
|
78
77
|
### Why it works
|
|
79
78
|
|
|
80
|
-
- **Forward compatible**
|
|
81
|
-
- **Registry alignment**
|
|
82
|
-
- **Clear contracts**
|
|
79
|
+
- **Forward compatible** – declaring the handler today reserves the RIFF chunk namespace for future work.
|
|
80
|
+
- **Registry alignment** – subclassing `EmbedXmpBase` means discovery logic will work without code changes once implemented.
|
|
81
|
+
- **Clear contracts** – explicit `NotImplementedError` exceptions communicate the remaining work to contributors.
|
|
83
82
|
|
|
84
83
|
## Project Resources
|
|
85
84
|
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-

|
|
3
2
|
|
|
4
3
|
<p align="center">
|
|
5
|
-
<a href="https://
|
|
6
|
-
<img src="https://
|
|
4
|
+
<a href="https://pepy.tech/project/swarmauri_xmp_webp/">
|
|
5
|
+
<img src="https://static.pepy.tech/badge/swarmauri_xmp_webp/month" alt="PyPI - Downloads"/></a>
|
|
7
6
|
<a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_xmp_webp/">
|
|
8
7
|
<img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/standards/swarmauri_xmp_webp.svg"/></a>
|
|
9
8
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
10
|
-
<img src="https://img.shields.io/
|
|
9
|
+
<img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
|
|
11
10
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
12
11
|
<img src="https://img.shields.io/pypi/l/swarmauri_xmp_webp" alt="PyPI - License"/></a>
|
|
13
12
|
<a href="https://pypi.org/project/swarmauri_xmp_webp/">
|
|
14
13
|
<img src="https://img.shields.io/pypi/v/swarmauri_xmp_webp?label=swarmauri_xmp_webp&color=green" alt="PyPI - swarmauri_xmp_webp"/></a>
|
|
15
14
|
</p>
|
|
16
|
-
|
|
17
15
|
---
|
|
18
16
|
|
|
19
17
|
# swarmauri_xmp_webp
|
|
@@ -22,9 +20,9 @@
|
|
|
22
20
|
|
|
23
21
|
## Features
|
|
24
22
|
|
|
25
|
-
- **Forward compatible**
|
|
26
|
-
- **Registry aligned**
|
|
27
|
-
- **Clear contracts**
|
|
23
|
+
- **Forward compatible** – establishes class signatures today so future implementations slot straight into existing workflows.
|
|
24
|
+
- **Registry aligned** – inherits from `EmbedXmpBase`, enabling automatic discovery through Swarmauri's dynamic registry.
|
|
25
|
+
- **Clear contracts** – raises `NotImplementedError` for read/write/remove until the RIFF logic is complete.
|
|
28
26
|
|
|
29
27
|
## Installation
|
|
30
28
|
|
|
@@ -52,9 +50,9 @@ except NotImplementedError:
|
|
|
52
50
|
|
|
53
51
|
### Why it works
|
|
54
52
|
|
|
55
|
-
- **Forward compatible**
|
|
56
|
-
- **Registry alignment**
|
|
57
|
-
- **Clear contracts**
|
|
53
|
+
- **Forward compatible** – declaring the handler today reserves the RIFF chunk namespace for future work.
|
|
54
|
+
- **Registry alignment** – subclassing `EmbedXmpBase` means discovery logic will work without code changes once implemented.
|
|
55
|
+
- **Clear contracts** – explicit `NotImplementedError` exceptions communicate the remaining work to contributors.
|
|
58
56
|
|
|
59
57
|
## Project Resources
|
|
60
58
|
|
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "swarmauri_xmp_webp"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.2.dev2"
|
|
4
4
|
description = "WebP handler scaffold for embedding and extracting XMP packets in Swarmauri runtimes."
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
7
|
-
requires-python = ">=3.10,<3.
|
|
7
|
+
requires-python = ">=3.10,<3.15"
|
|
8
8
|
classifiers = [
|
|
9
9
|
"License :: OSI Approved :: Apache Software License",
|
|
10
10
|
"Natural Language :: English",
|
|
11
|
-
"Programming Language :: Python :: 3.10",
|
|
12
|
-
"Programming Language :: Python :: 3.11",
|
|
13
|
-
"Programming Language :: Python :: 3.12",
|
|
14
|
-
"Programming Language :: Python :: 3.13",
|
|
15
11
|
"Development Status :: 2 - Pre-Alpha",
|
|
16
12
|
"Programming Language :: Python",
|
|
17
13
|
"Programming Language :: Python :: 3",
|
|
18
14
|
"Programming Language :: Python :: 3 :: Only",
|
|
15
|
+
"Programming Language :: Python :: 3.10",
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
17
|
+
"Programming Language :: Python :: 3.12",
|
|
18
|
+
"Programming Language :: Python :: 3.13",
|
|
19
|
+
"Programming Language :: Python :: 3.14",
|
|
19
20
|
]
|
|
20
21
|
authors = [{ name = "Jacob Stewart", email = "jacob@swarmauri.com" }]
|
|
21
22
|
dependencies = [
|
|
File without changes
|
{swarmauri_xmp_webp-0.1.1.dev47 → swarmauri_xmp_webp-0.1.2.dev2}/swarmauri_xmp_webp/__init__.py
RENAMED
|
File without changes
|