-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
43 lines (36 loc) · 1.11 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
36
37
38
39
40
41
42
43
import os
import sys
import pathlib
from setuptools import find_packages, setup
from setuptools.command.install import install as _install
HERE = pathlib.Path(__file__).parent
VERSION = '0.0.1'
PACKAGE_NAME = 'cascada'
AUTHOR = 'Adrián Ranea'
# AUTHOR_EMAIL omitted
URL = 'https://github.com/ranea/CASCADA'
LICENSE = 'MIT'
DESCRIPTION = 'CASCADA (Characteristic Automated Search of Cryptographic Algorithms for Distinguishing Attacks) is a Python 3 library to evaluate the security of cryptographic primitives, specially block ciphers, against distinguishing attacks with bit-vector SMT solvers.'
LONG_DESCRIPTION = (HERE / "README.rst").read_text(encoding='utf-8')
LONG_DESC_TYPE = "text/markdown"
INSTALL_REQUIRES = [
'cython',
'sympy',
'bidict',
'cffi',
'wurlitzer',
'pySMT'
]
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
url=URL,
install_requires=INSTALL_REQUIRES,
license=LICENSE,
packages=find_packages(),
include_package_data=True,
)