blob: 3ce281ae292b5481bead51761021ad0fb2bad77f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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",
version="0.4.8",
author="Trevor Perrin",
author_email="tlslite@trevp.net",
url="http://trevp.net/tlslite/",
description="tlslite implements SSL and TLS.",
license="public domain and BSD",
scripts=["scripts/tls.py", "scripts/tlsdb.py"],
packages=["tlslite", "tlslite.utils", "tlslite.integration"],)
|