-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.61 KB
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
56
57
58
59
60
61
[project]
name = "vernamveil"
version = "0.1.0"
description = "VernamVeil is a modular, symmetric stream cypher inspired by One-Time Pad. It features customisable keystream generation, synthetic IV seed initialisation, stateful seed evolution for avalanche effects, authenticated encryption, and layered message obfuscation. Supports vectorised operations and optional C-backed hashing for performance. Designed for educational and experimental use."
authors = [
{ name = "Vasilis Vryniotis", email = "datumbox@github.com" }
]
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
urls = { "Homepage" = "https://github.com/datumbox/vernamveil" }
[project.optional-dependencies]
dev = [
"black>=25.1",
"darglint>=1.8",
"flake8>=7.2",
"isort>=6.0",
"mypy>=1.16",
"myst_parser>=4.0",
"pydocstyle>=6.3",
"sphinx>=8.1",
"sphinx-autodoc-typehints>=3.0",
"sphinx_rtd_theme>=3.0",
"types-setuptools>=80.9"
]
numpy = [
"numpy>=2.2"
]
cffi = [
"cffi>=1.17"
]
[project.scripts]
vernamveil = "vernamveil._cli:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ["py310"]
skip-string-normalization = false
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict = true
[tool.setuptools.packages.find]
include = ["vernamveil", "nphash"]
[tool.setuptools.package-data]
"vernamveil" = ["py.typed"]
"nphash" = ["py.typed", "_bytesearchffi.*.so", "_npblake2bffi.*.so", "_npblake3ffi.*.so", "_npsha256ffi.*.so"]