-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 801 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 801 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
[project]
name = "cry"
version = "0.2.5"
description = "Cry: SageMath/Python Toolkit for Cryptanalytic Research"
authors = [
{name = "Aleksei Udovenko", email = "aleksei@affine.group"}
]
license = "MIT"
readme = "README.md"
keywords = ["cryptanalysis", "cryptography", "S-Boxes"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Security :: Cryptography",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
requires-python = ">=3.9"
dependencies = [
"binteger>=0.15.1"
]
[project.urls]
repository = "http://github.com/hellman/cry"
[tool.poetry.group.dev.dependencies]
pytest = "^6.1.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"