File tree Expand file tree Collapse file tree 15 files changed +647
-296
lines changed
Expand file tree Collapse file tree 15 files changed +647
-296
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ check-format:
9898
9999# Formats Python source code using autopep8 with aggressive settings
100100format :
101- autopep8 --aggressive --aggressive --in-place src/c2pa/* .py
101+ autopep8 --aggressive --aggressive --in-place src/c2pa/c2pa .py
102102
103103# Downloads the required native artifacts for the specified version
104104download-native-artifacts :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " c2pa-python"
7- version = " 0.16 .0"
7+ version = " 0.19 .0"
88requires-python = " >=3.10"
99description = " Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010readme = { file = " README.md" , content-type = " text/markdown" }
Original file line number Diff line number Diff line change @@ -16,4 +16,4 @@ autopep8==2.0.4 # For automatic code formatting
1616flake8 == 7.3.0
1717
1818# Test dependencies (for callback signers)
19- cryptography == 45.0.4
19+ cryptography == 45.0.6
Original file line number Diff line number Diff line change 11# only used in the training example
2- cryptography >= 45.0.3
2+ cryptography >= 45.0.6
Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
2+
3+ # Copyright 2025 Adobe. All rights reserved.
4+ # This file is licensed to you under the Apache License,
5+ # Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
6+ # or the MIT license (http://opensource.org/licenses/MIT),
7+ # at your option.
8+
9+ # Unless required by applicable law or agreed to in writing,
10+ # this software is distributed on an "AS IS" BASIS, WITHOUT
11+ # WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or
12+ # implied. See the LICENSE-MIT and LICENSE-APACHE files for the
13+ # specific language governing permissions and limitations under
14+ # each license.
15+
216import os
317import sys
418import requests
Original file line number Diff line number Diff line change 1+ # Copyright 2025 Adobe. All rights reserved.
2+ # This file is licensed to you under the Apache License,
3+ # Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
4+ # or the MIT license (http://opensource.org/licenses/MIT),
5+ # at your option.
6+
7+ # Unless required by applicable law or agreed to in writing,
8+ # this software is distributed on an "AS IS" BASIS, WITHOUT
9+ # WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or
10+ # implied. See the LICENSE-MIT and LICENSE-APACHE files for the
11+ # specific language governing permissions and limitations under
12+ # each license.
13+
114from setuptools import setup , find_namespace_packages
215import sys
316import platform
Original file line number Diff line number Diff line change 1+ # Copyright 2025 Adobe. All rights reserved.
2+ # This file is licensed to you under the Apache License,
3+ # Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
4+ # or the MIT license (http://opensource.org/licenses/MIT),
5+ # at your option.
6+
7+ # Unless required by applicable law or agreed to in writing,
8+ # this software is distributed on an "AS IS" BASIS, WITHOUT
9+ # WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or
10+ # implied. See the LICENSE-MIT and LICENSE-APACHE files for the
11+ # specific language governing permissions and limitations under
12+ # each license.
13+
114try :
215 from importlib .metadata import version
316 __version__ = version ("c2pa-python" )
Original file line number Diff line number Diff line change 1+ # Copyright 2025 Adobe. All rights reserved.
2+ # This file is licensed to you under the Apache License,
3+ # Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
4+ # or the MIT license (http://opensource.org/licenses/MIT),
5+ # at your option.
6+
7+ # Unless required by applicable law or agreed to in writing,
8+ # this software is distributed on an "AS IS" BASIS, WITHOUT
9+ # WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or
10+ # implied. See the LICENSE-MIT and LICENSE-APACHE files for the
11+ # specific language governing permissions and limitations under
12+ # each license.
13+
114import os
215import sys
316import requests
You can’t perform that action at this time.
0 commit comments