-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from contentauth/linux_c2pa_fix
Multi-platform publish with import name change to c2pa
- Loading branch information
Showing
8 changed files
with
163 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "c2pa-python" | ||
version = "0.3.2" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Gavin Peacock <[email protected]"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lib] | ||
name = "c2pa_python" | ||
name = "c2pa" | ||
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
c2pa-c = { git = "https://github.com/contentauth/c2pa-c.git", branch = "main"} | ||
c2pa-c = { git = "https://github.com/contentauth/c2pa-c.git", branch = "main" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
thiserror = "1.0.49" | ||
thiserror = "1.0.49" | ||
uniffi = "0.24.1" | ||
|
||
[build-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[build-system] | ||
requires = ["maturin>=1.2,<2.0"] | ||
requires = ["maturin>=1.2,<2.0","uniffi_bindgen>=0.24,<0.25"] | ||
build-backend = "maturin" | ||
|
||
[project] | ||
name = "c2pa-python" | ||
dependencies = ["cffi"] | ||
requires-python = ">=3.7" | ||
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library" | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
|
@@ -13,7 +14,7 @@ classifiers = [ | |
"Development Status :: 3 - Alpha", | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Programming Language :: Python :: Implementation :: PyPy" | ||
] | ||
authors = [ | ||
{name = "Gavin Peacock", email = "[email protected]"} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
maturin==1.2.0 | ||
uniffi-bindgen==0.24.1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters