forked from nabla-c0d3/sslyze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.2 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
#!/usr/bin/env python2.7
from sslyze import PROJECT_URL, PROJECT_DESC, __author__, __email__, __version__, __license__
SSLYZE_SETUP = {
'name': 'SSLyze',
'version': __version__,
'description': PROJECT_DESC,
'author': __author__,
'author_email': __email__,
'license': __license__,
'url': PROJECT_URL,
'entry_points': {'console_scripts': ['sslyze = sslyze.__main__:main']},
'packages': ['sslyze', 'sslyze.plugins', 'sslyze.utils'],
'package_data': {'sslyze.plugins': ['data/trust_stores/*.pem']},
'install_requires': ['nassl>=0.14.0,<0.15.0'],
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: French',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Networking',
'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)