c2pa-python 0.37.2__tar.gz → 0.37.4__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.
Files changed (22) hide show
  1. {c2pa_python-0.37.2/src/c2pa_python.egg-info → c2pa_python-0.37.4}/PKG-INFO +4 -4
  2. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/README.md +3 -3
  3. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/pyproject.toml +1 -1
  4. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa/c2pa.py +598 -406
  5. {c2pa_python-0.37.2 → c2pa_python-0.37.4/src/c2pa_python.egg-info}/PKG-INFO +4 -4
  6. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/tests/test_unit_tests.py +1905 -12
  7. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/tests/test_unit_tests_threaded.py +128 -4
  8. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/LICENSE-APACHE +0 -0
  9. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/LICENSE-MIT +0 -0
  10. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/MANIFEST.in +0 -0
  11. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/requirements.txt +0 -0
  12. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/scripts/download_artifacts.py +0 -0
  13. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/setup.cfg +0 -0
  14. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/setup.py +0 -0
  15. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa/__init__.py +0 -0
  16. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa/build.py +0 -0
  17. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa/lib.py +0 -0
  18. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa_python.egg-info/SOURCES.txt +0 -0
  19. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa_python.egg-info/dependency_links.txt +0 -0
  20. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa_python.egg-info/entry_points.txt +0 -0
  21. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa_python.egg-info/requires.txt +0 -0
  22. {c2pa_python-0.37.2 → c2pa_python-0.37.4}/src/c2pa_python.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: c2pa-python
3
- Version: 0.37.2
3
+ Version: 0.37.4
4
4
  Summary: Python bindings for the C2PA Content Authenticity Initiative (CAI) library
5
5
  Author-email: Gavin Peacock <gvnpeacock@adobe.com>, Tania Mathern <mathern@adobe.com>
6
6
  Maintainer-email: Gavin Peacock <gpeacock@adobe.com>, Tania Mathern <mathern@adobe.com>
@@ -35,7 +35,7 @@ Features:
35
35
  - Add assertions and ingredients to assets.
36
36
  - Examples and unit tests to demonstrate usage.
37
37
 
38
- <div style={{display: 'none'}}>
38
+ <div class="github-only">
39
39
 
40
40
  For the best experience, read the docs on the [CAI Open Source SDK documentation website](https://opensource.contentauthenticity.org/docs/c2pa-c).
41
41
 
@@ -44,7 +44,7 @@ If you want to view the documentation in GitHub, see:
44
44
  - [Supported formats](https://github.com/contentauth/c2pa-rs/blob/main/docs/supported-formats.md)
45
45
  - [Configuring the SDK using `Context` and `Settings`](docs/context-settings.md)
46
46
  - [Using Builder intents](docs/intents.md) to ensure spec-compliant manifests
47
- - Using [working stores and archvies](docs/working-stores.md)
47
+ - Using [working stores and archives](docs/working-stores.md)
48
48
  - Selectively constructing manifests by [filtering actions and ingredients](docs/selective-manifests.md)
49
49
  - [Diagram of public classes in the Python library and their relationships](docs/class-diagram.md)
50
50
  - [Release notes](docs/release-notes.md)
@@ -95,7 +95,7 @@ export C2PA_RS_PATH=/path/to/c2pa-rs
95
95
  make build-from-source C2PA_RS_PATH=$C2PA_RS_PATH
96
96
  ```
97
97
 
98
- This does a clean build of the `c2pa-c-ffi` crate (with the `file_io` feature, which the Python wrapper requires), stages the resulting library under both `artifacts/` and `src/c2pa/libs/`, and installs the package in editable mode, replacing any prebuilt artifacts from `make download-native-artifacts`. The release profile is used by default; to build the debug profile instead, pass `EXTRA_BUILD_ARGS="--debug"`:
98
+ This does a clean build of the `c2pa-c-ffi` crate (with the `file_io` feature, which the Python wrapper requires), stages the resulting library under both `artifacts/` and `src/c2pa/libs/`, and installs the package in editable mode, replacing any prebuilt artifacts from `make download-native-artifacts`. By default, the build uses the release profile; to build the debug profile instead, pass `EXTRA_BUILD_ARGS="--debug"`:
99
99
 
100
100
  ```sh
101
101
  make build-from-source C2PA_RS_PATH=$C2PA_RS_PATH EXTRA_BUILD_ARGS="--debug"
@@ -12,7 +12,7 @@ Features:
12
12
  - Add assertions and ingredients to assets.
13
13
  - Examples and unit tests to demonstrate usage.
14
14
 
15
- <div style={{display: 'none'}}>
15
+ <div class="github-only">
16
16
 
17
17
  For the best experience, read the docs on the [CAI Open Source SDK documentation website](https://opensource.contentauthenticity.org/docs/c2pa-c).
18
18
 
@@ -21,7 +21,7 @@ If you want to view the documentation in GitHub, see:
21
21
  - [Supported formats](https://github.com/contentauth/c2pa-rs/blob/main/docs/supported-formats.md)
22
22
  - [Configuring the SDK using `Context` and `Settings`](docs/context-settings.md)
23
23
  - [Using Builder intents](docs/intents.md) to ensure spec-compliant manifests
24
- - Using [working stores and archvies](docs/working-stores.md)
24
+ - Using [working stores and archives](docs/working-stores.md)
25
25
  - Selectively constructing manifests by [filtering actions and ingredients](docs/selective-manifests.md)
26
26
  - [Diagram of public classes in the Python library and their relationships](docs/class-diagram.md)
27
27
  - [Release notes](docs/release-notes.md)
@@ -72,7 +72,7 @@ export C2PA_RS_PATH=/path/to/c2pa-rs
72
72
  make build-from-source C2PA_RS_PATH=$C2PA_RS_PATH
73
73
  ```
74
74
 
75
- This does a clean build of the `c2pa-c-ffi` crate (with the `file_io` feature, which the Python wrapper requires), stages the resulting library under both `artifacts/` and `src/c2pa/libs/`, and installs the package in editable mode, replacing any prebuilt artifacts from `make download-native-artifacts`. The release profile is used by default; to build the debug profile instead, pass `EXTRA_BUILD_ARGS="--debug"`:
75
+ This does a clean build of the `c2pa-c-ffi` crate (with the `file_io` feature, which the Python wrapper requires), stages the resulting library under both `artifacts/` and `src/c2pa/libs/`, and installs the package in editable mode, replacing any prebuilt artifacts from `make download-native-artifacts`. By default, the build uses the release profile; to build the debug profile instead, pass `EXTRA_BUILD_ARGS="--debug"`:
76
76
 
77
77
  ```sh
78
78
  make build-from-source C2PA_RS_PATH=$C2PA_RS_PATH EXTRA_BUILD_ARGS="--debug"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "c2pa-python"
7
- version = "0.37.2"
7
+ version = "0.37.4"
8
8
  requires-python = ">=3.10"
9
9
  description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
10
10
  readme = { file = "README.md", content-type = "text/markdown" }