forked from tlsfuzzer/tlslite-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·50 lines (46 loc) · 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# Author: Trevor Perrin
# See the LICENSE file for legal information regarding use of this file.
from distutils.core import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README")) as f:
README = f.read()
setup(name="tlslite-ng",
version="0.8.0-beta5",
author="Alicja Kario",
author_email="[email protected]",
url="https://github.com/tlsfuzzer/tlslite-ng",
description="Pure python implementation of SSL and TLS.",
long_description=README,
license="LGPLv2",
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
packages=["tlslite", "tlslite.utils", "tlslite.integration"],
package_data={
'package1': ['LICENSE', 'README.md']},
install_requires=['ecdsa>=0.18.0b1'],
obsoletes=["tlslite"],
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
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',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
],
keywords="ssl, tls, pure-python"
)