forked from abbbe/sslcaudit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 913 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ----------------------------------------------------------------------
# SSLCAUDIT - a tool for automating security audit of SSL clients
# Released under terms of GPLv3, see COPYING.TXT
# Copyright (C) 2012 Alexandre Bezroutchko [email protected]
# ----------------------------------------------------------------------
from distutils.core import setup
setup(
name='sslcaudit',
author='Alexandre Bezroutchko',
author_email='[email protected]',
description='Utility to perform security audits of SSL/TLS clients',
url='http://www.gremwell.com/sslcaudit_v1_0',
version='1.0',
license='GPLv3',
scripts=['bin/sslcaudit'],
package_dir={'sslcaudit': 'sslcaudit'},
packages=['sslcaudit', 'sslcaudit.core', 'sslcaudit.modules',
'sslcaudit.modules.base', 'sslcaudit.modules.dummy',
'sslcaudit.modules.sslcert', 'sslcaudit.profile', 'sslcaudit.test']
)