-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 769 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 769 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
30
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eachacha"
version = "1.0.6"
description = "ChaCha20 SIMD kernels in Eä — encrypt, fused stats, and searchable cipher"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [{name = "Peter Lukka", email = "peter.lukka@gmail.com"}]
dependencies = []
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
]
[project.scripts]
eachacha-grep = "eachacha.cli:main"
[project.urls]
Repository = "https://github.com/petlukk/eachacha"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
eachacha = ["lib/*.so", "lib/*.dll"]