forked from nabla-c0d3/sslyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.69 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
#!/usr/bin/env python
from sslyze import PROJECT_URL, PROJECT_DESC, __author__, __email__, __version__
SSLYZE_SETUP = {
'name': 'SSLyze',
'version': __version__,
'description': PROJECT_DESC,
'author': __author__,
'author_email': __email__,
'url': PROJECT_URL,
'entry_points': {'console_scripts': ['sslyze = sslyze.__main__:main']},
'packages': ['sslyze', 'sslyze.cli', 'sslyze.utils', 'sslyze.plugins', 'sslyze.plugins.utils',
'sslyze.plugins.utils.trust_store'],
'package_data': {'sslyze.plugins.utils.trust_store': ['pem_files/*.pem', 'pem_files/*.yaml']},
'install_requires': ['nassl>=1.1.0,<1.2.0',
'cryptography>=2.1.4',
'tls-parser>=1.2.0,<1.3.0'],
'extras_require': {':python_version < "3.4"': ['enum34'],
':python_version < "3.5"': ['typing']},
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: French',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Security',
],
}
if __name__ == "__main__":
# Importing setuptools here because setup_py2exe also imports SSLYZE_SETUP but needs to use distutils
from setuptools import setup
setup(**SSLYZE_SETUP)