-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
25 lines (23 loc) · 1.02 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
# ----------------------------------------------------------------------
# SSLCAUDIT - a tool for automating security audit of SSL clients
# Released under terms of GPLv3, see COPYING.TXT
# Copyright (C) 2012 Alexandre Bezroutchko abb@gremwell.com
# ----------------------------------------------------------------------
from distutils.core import setup
setup(
name='sslcaudit',
author='Alexandre Bezroutchko',
author_email='abb@gremwell.com',
description='Utility to perform security audits of SSL/TLS clients',
url='http://www.gremwell.com/sslcaudit',
version='1.1',
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.modules.sslproto', 'sslcaudit.profile', 'sslcaudit.test',
'sslcaudit.ui'],
package_data={'sslcaudit': ['files/*']},
requires=['m2crypto', 'qt4']
)