-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 900 Bytes
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
[project]
name = "cyphera"
version = "0.0.1a4"
description = "Data protection SDK — format-preserving encryption (FF1/FF3), AES-GCM, data masking, and hashing."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
dependencies = ["cryptography>=41.0"]
authors = [
{ name = "Leslie Gutschow", email = "[email protected]" },
]
keywords = ["encryption", "fpe", "format-preserving", "data-protection", "masking"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
]
[project.urls]
Homepage = "https://cyphera.io"
Repository = "https://github.com/cyphera-labs/cyphera-python"
Issues = "https://github.com/cyphera-labs/cyphera-python/issues"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]