-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
28 lines (26 loc) · 1001 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
[build-system]
requires = ["maturin>=0.14,<2"]
build-backend = "maturin"
[project]
name = "pysequoia"
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 = "[email protected]"}
]
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"