-
Notifications
You must be signed in to change notification settings - Fork 68
/
setup.py
executable file
·53 lines (45 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
package_name = 'robot-detect'
readme = """
robot-detect
============
Tool to detect and exploit the ROBOT vulnerability (Return of
Bleichenbacher's Oracle Threat).
More Info:
https://robotattack.org/
"""
VERSION = 0.3
setup(
name=package_name,
version=VERSION,
description="Detection for ROBOT vulnerability",
long_description=readme,
author="Hanno Böck, Juraj Somorovsky, Craig Young, Tibor Jager",
author_email='[email protected]',
url='https://www.robotattack.org',
packages=[],
scripts=['robot-detect'],
python_requires='>=3',
install_requires=[
'gmpy2',
'cryptography'
],
license="CC0",
zip_safe=True,
keywords=('tls', 'robot', 'security', 'vulnerability'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)