-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
40 lines (38 loc) · 1.49 KB
/
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
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["maturin>=1.5,<2.0", "zeroing>=0.1.0", "numpy>=1.20.0"]
build-backend = "maturin"
[project]
name = "rencrypt"
authors = [
{ name="Radu Marias", email="[email protected]" },
]
description = "A Python encryption library implemented in Rust. It supports AEAD with various ciphers. It uses multiple providers to handle encryption."
readme = "README.md"
keywords = ["cryptography", "encryption", "security", "rust", "speed", "aead", "cipher"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License"
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]
[project.urls]
Homepage = "https://github.com/radumarias/rencrypt-python"
Issues = "https://github.com/radumarias/rencrypt-python/issues"