[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "proofmode"
version = "0.8.4"
description = "Python bindings for ProofMode - Capture, share, and preserve verifiable photos and videos"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Guardian Project", email = "support@guardianproject.info"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Multimedia :: Graphics",
"Topic :: Security :: Cryptography",
]
requires-python = ">=3.8"
dependencies = [
"click>=8.0",
"rich>=10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"ruff>=0.1",
"mypy>=1.0",
]
[project.scripts]
proofmode = "proofmode.cli:main"
[project.urls]
Homepage = "https://proofmode.org"
Repository = "https://gitlab.com/guardianproject/proofmode/proofmode-rust"
Issues = "https://gitlab.com/guardianproject/proofmode/proofmode-rust/-/issues"
[tool.maturin]
features = ["python", "sequoia-openpgp", "polars", "c2pa"]
module-name = "proofmode._proofmode"
python-source = "python"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.ruff]
line-length = 100
target-version = "py38"
select = ["E", "F", "I", "N", "W"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true