Skip to content

Commit e712497

Browse files
committed
refresh and fix binteger version issue
1 parent fd2123f commit e712497

File tree

2 files changed

+255
-15
lines changed

2 files changed

+255
-15
lines changed

poetry.lock

Lines changed: 236 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
1-
[tool.poetry]
1+
[project]
22
name = "cry"
3-
version = "0.2.3"
3+
version = "0.2.5"
44
description = "Cry: SageMath/Python Toolkit for Cryptanalytic Research"
5-
authors = ["hellman"]
5+
authors = [
6+
{name = "Aleksei Udovenko", email = "aleksei@affine.group"}
7+
]
68
license = "MIT"
79
readme = "README.md"
810
keywords = ["cryptanalysis", "cryptography", "S-Boxes"]
911
classifiers = [
10-
'Intended Audience :: Science/Research',
11-
'Topic :: Scientific/Engineering :: Mathematics',
12-
'Topic :: Security :: Cryptography',
12+
"Intended Audience :: Science/Research",
13+
"Topic :: Scientific/Engineering :: Mathematics",
14+
"Topic :: Security :: Cryptography",
15+
"Development Status :: 4 - Beta",
16+
"Programming Language :: Python",
17+
]
18+
requires-python = ">=3.9"
19+
dependencies = [
20+
"binteger>=0.15.1"
1321
]
1422

15-
[tool.poetry.urls]
16-
homepage = "http://github.com/hellman/cry"
17-
18-
[tool.poetry.dependencies]
19-
python = "^3.5"
20-
binteger = "^0.8.0"
23+
[project.urls]
24+
repository = "http://github.com/hellman/cry"
2125

22-
[tool.poetry.dev-dependencies]
26+
[tool.poetry.group.dev.dependencies]
2327
pytest = "^6.1.1"
2428

2529
[build-system]
26-
requires = ["poetry-core>=1.0.0a5"]
27-
build-backend = "poetry.core.masonry.api"
30+
requires = ["poetry-core>=2.0.0,<3.0.0"]
31+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)