forked from bitlogik/lattice-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 1009 Bytes
/
setup.py
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
36
37
38
#!/usr/bin/env python3
# Lattice ECDSA Attack - Setup file
# Copyright (C) 2021 Antoine Ferron - BitLogiK
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = [
"cryptography>=2.1",
"fpylll>=0.5",
]
setup(
name="lattice-attack",
version="0.1.2",
description="Lattice ECDSA Attack from partial nonces.",
long_description=readme + "\n\n",
author="BitLogiK",
author_email="[email protected]",
url="https://github.com/bitlogik/lattice-attack",
python_requires=">=3.6",
install_requires=requirements,
license="GPLv3",
keywords="cryptography",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Security :: Cryptography",
],
long_description_content_type="text/markdown",
)