forked from maidsafe/self_encryption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (50 loc) · 1.61 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "self_encryption"
dynamic = ["version"]
description = "Self encrypting files (convergent encryption plus obfuscation)"
authors = [{ name = "MaidSafe Developers", email = "[email protected]" }]
dependencies = ["click>=8.1.7", "maturin>=1.7.8", "pip>=24.0"]
readme = "README.md"
requires-python = ">=3.7"
license = { text = "GPL-3.0" }
keywords = [
"encryption",
"convergent-encryption",
"self-encryption",
"obfuscation",
"security",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://maidsafe.net"
Documentation = "https://docs.rs/self_encryption"
Repository = "https://github.com/maidsafe/self_encryption"
[project.scripts]
self-encryption = "self_encryption:cli"
[tool.maturin]
features = ["python"]
module-name = "self_encryption._self_encryption"
python-source = "."
bindings = "pyo3"
include = ["Cargo.toml"]
cargo-manifest = "Cargo.toml"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]