[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / third_party / tlslite / setup.py
blob51ef011f1d1faa4cce922fe6abc4f578e36451aa
1 #!/usr/bin/env python
3 # Author: Trevor Perrin
4 # See the LICENSE file for legal information regarding use of this file.
6 from distutils.core import setup
8 setup(name="tlslite",
9 version="0.4.6",
10 author="Trevor Perrin",
11 author_email="tlslite@trevp.net",
12 url="http://trevp.net/tlslite/",
13 description="tlslite implements SSL and TLS.",
14 license="public domain and BSD",
15 scripts=["scripts/tls.py", "scripts/tlsdb.py"],
16 packages=["tlslite", "tlslite.utils", "tlslite.integration"],)