c2pa-python 0.37.9__tar.gz → 0.37.10__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.9/src/c2pa_python.egg-info → c2pa_python-0.37.10}/PKG-INFO +1 -4
  2. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/pyproject.toml +1 -4
  3. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa/c2pa.py +1 -1
  4. {c2pa_python-0.37.9 → c2pa_python-0.37.10/src/c2pa_python.egg-info}/PKG-INFO +1 -4
  5. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa_python.egg-info/requires.txt +0 -3
  6. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/LICENSE-APACHE +0 -0
  7. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/LICENSE-MIT +0 -0
  8. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/MANIFEST.in +0 -0
  9. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/README.md +0 -0
  10. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/requirements.txt +0 -0
  11. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/scripts/download_artifacts.py +0 -0
  12. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/setup.cfg +0 -0
  13. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/setup.py +0 -0
  14. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa/__init__.py +0 -0
  15. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa/build.py +0 -0
  16. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa/lib.py +0 -0
  17. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa_python.egg-info/SOURCES.txt +0 -0
  18. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa_python.egg-info/dependency_links.txt +0 -0
  19. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa_python.egg-info/entry_points.txt +0 -0
  20. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/src/c2pa_python.egg-info/top_level.txt +0 -0
  21. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/tests/test_unit_tests.py +0 -0
  22. {c2pa_python-0.37.9 → c2pa_python-0.37.10}/tests/test_unit_tests_threaded.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: c2pa-python
3
- Version: 0.37.9
3
+ Version: 0.37.10
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>
@@ -13,10 +13,7 @@ Classifier: Operating System :: POSIX :: Linux
13
13
  Classifier: Operating System :: Microsoft :: Windows
14
14
  Requires-Python: >=3.10
15
15
  Description-Content-Type: text/markdown
16
- Requires-Dist: wheel>=0.41.2
17
- Requires-Dist: setuptools>=68.0.0
18
16
  Requires-Dist: toml>=0.10.2
19
- Requires-Dist: pytest>=7.4.0
20
17
  Requires-Dist: cryptography>=41.0.0
21
18
  Requires-Dist: requests>=2.0.0
22
19
  Dynamic: requires-python
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "c2pa-python"
7
- version = "0.37.9"
7
+ version = "0.37.10"
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" }
@@ -22,10 +22,7 @@ maintainers = [
22
22
  ]
23
23
  urls = {homepage = "https://contentauthenticity.org", repository = "https://github.com/contentauth/c2pa-python"}
24
24
  dependencies = [
25
- "wheel>=0.41.2",
26
- "setuptools>=68.0.0",
27
25
  "toml>=0.10.2",
28
- "pytest>=7.4.0",
29
26
  "cryptography>=41.0.0",
30
27
  "requests>=2.0.0"
31
28
  ]
@@ -11,7 +11,7 @@
11
11
  # specific language governing permissions and limitations under
12
12
  # each license.
13
13
 
14
- # Version: 0.37.9
14
+ # Version: 0.37.10
15
15
 
16
16
  import ctypes
17
17
  import enum
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: c2pa-python
3
- Version: 0.37.9
3
+ Version: 0.37.10
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>
@@ -13,10 +13,7 @@ Classifier: Operating System :: POSIX :: Linux
13
13
  Classifier: Operating System :: Microsoft :: Windows
14
14
  Requires-Python: >=3.10
15
15
  Description-Content-Type: text/markdown
16
- Requires-Dist: wheel>=0.41.2
17
- Requires-Dist: setuptools>=68.0.0
18
16
  Requires-Dist: toml>=0.10.2
19
- Requires-Dist: pytest>=7.4.0
20
17
  Requires-Dist: cryptography>=41.0.0
21
18
  Requires-Dist: requests>=2.0.0
22
19
  Dynamic: requires-python
@@ -1,6 +1,3 @@
1
- wheel>=0.41.2
2
- setuptools>=68.0.0
3
1
  toml>=0.10.2
4
- pytest>=7.4.0
5
2
  cryptography>=41.0.0
6
3
  requests>=2.0.0
File without changes
File without changes
File without changes
File without changes
File without changes