aries-askar 0.4.6

Askar cryptographic primitives and secure storage
Documentation
[project]
name = "aries_askar"
version = "0.3.2"
authors = [
    { name = "Hyperledger Aries Contributors", email = "aries@lists.hyperledger.org" },
]
description = "Python wrapper for the Askar cryptographic library"
readme = "README.md"
license = { text = "Apache-2.0" }
homepage = "https://github.com/openwallet-foundation/askar"
repository = "https://github.com/openwallet-foundation/askar"
keywords = ["cryptography", "aries", "verifiable credentials"]
requires-python = ">= 3.8, <4"

# [tool.poetry.build]
# script = "build.py"
# generate-setup-file = true

[tool.poetry.dev-dependencies]
pytest = "~8.3.4"
pytest-asyncio = "~0.25.0"

[build-system]
requires = ["poetry-core>=1.8.3"]
build-backend = "poetry.core.masonry.api"

# [build-system]
# requires = ["setuptools"]
# build-backend = "setuptools.build_meta"

[tool.setuptools.package-data]
aries_askar = ["aries_askar.dll", "libaries_askar.dylib", "libaries_askar.so"]

[tool.flake8]
max-line-length = 88
exclude = ["*/tests/**"]
extend-ignore = ["D202", "W503"]
per-file-ignores = { "*/__init__.py" = ["D104"] }

[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "strict"