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
|
[build-system]
requires = ["maturin>=0.14,<2"]
build-backend = "maturin"
[project]
name = "pysequoia"
version = "0.1.29"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
authors = [
{name = "Wiktor Kwapisiewicz", email = "wiktor@metacode.biz"}
]
keywords = ["openpgp", "pgp", "gpg", "gnupg", "sequoia"]
license = {file = "LICENSE"}
description = "Provides OpenPGP facilities using Sequoia-PGP library"
[project.urls]
homepage = "https://github.com/wiktor-k/pysequoia"
changelog = "https://github.com/wiktor-k/pysequoia/tags"
repository = "https://github.com/wiktor-k/pysequoia"
"Bug Tracker" = "https://github.com/wiktor-k/pysequoia/issues"
|