-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.27 KB
/
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
from setuptools import setup, find_packages
setup(
name="cryptanalysis",
version="0.0.3",
packages=find_packages(),
author="Himanshu Sheoran",
description="Automated cryptanalysis library for substitution permutation network",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/deut-erium/auto-cryptanalysis",
keywords="cryptanalysis differential linear cryptography SPN cipher crypto",
license="GPL",
install_requires=[
"z3-solver",
"tqdm"
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
project_urls={
"Documentation": "https://deut-erium.github.io/auto-cryptanalysis",
"Source Code": "https://github.com/deut-erium/auto-cryptanalysis"
},
include_package_data=True,
python_requires=">=3.6",
)