-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
30 lines (28 loc) · 988 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[build-system]
requires = ["maturin>=1.7.4,<2.0","uniffi_bindgen>=0.28,<0.30"]
build-backend = "maturin"
[project]
name = "c2pa"
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" }
license = {file = "LICENSE-MIT"}
keywords = ["C2PA", "CAI", "content credentials", "metadata", "provenance"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
authors = [
{name = "Gavin Peacock", email = "[email protected]"}
]
maintainers = [
{name = "Gavin Peacock", email = "[email protected]"}
]
urls = {homepage = "https://contentauthenticity.org", repository = "https://github.com/contentauth/c2pa-python"}
[project.optional-dependencies]
test = [
"pytest < 5.0.0"
]