-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 770 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
[build-system]
requires = ["setuptools>=64", "swig", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "subsets"
dynamic = ["version"]
dependencies = [
"binteger>=0.8.0",
]
requires-python = ">=3.7"
authors = [
{name = "Aleksei Udovenko", email = "aleksei@affine.group"}
]
description = "Tools for cryptanalysis (subsets & transforms)"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["subsets", "binary", "ternary", "multidimensional transforms", "cryptanalysis", "cryptography"]
[project.urls]
# Homepage = "https://example.com"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/hellman/subsets"
[project.scripts]
"subsets.info" = "subsets.tools:tool_setinfo"