-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 916 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
31
32
33
34
35
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "f8"
version = "1.3.0"
description = "F8: full-round known-key cross-round distinguishers for Speck, Threefish-256, Threefish-1024, GIFT, PRESENT, TEA, and RC5 (32- and 64-bit) via mutual-information analysis"
authors = [{name = "David Tom Foss"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"numpy>=1.20",
"scipy>=1.7",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
figures = ["matplotlib>=3.5"]
[project.urls]
Repository = "https://github.com/DT-Foss/f8"
[tool.setuptools]
py-modules = ["reproduce"]
[tool.setuptools.packages.find]
where = ["."]
include = ["experiments*"]