forked from tlsfuzzer/tlslite-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (35 loc) · 1.49 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
#!/usr/bin/env python
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.
from distutils.core import setup
setup(name="tlslite-ng",
version="0.6.0-alpha3",
author="Hubert Kario",
author_email="[email protected]",
url="https://github.com/tomato42/tlslite-ng",
description="Pure python implementation of SSL and TLS.",
license="LGPLv2",
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
packages=["tlslite", "tlslite.utils", "tlslite.integration"],
package_data={
'package1': ['LICENSE', 'README.md']},
install_requires=['ecdsa'],
obsoletes=["tlslite"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
],
keywords="ssl, tls, pure-python"
)