Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: third_party/tlslite/setup.py

Issue 210323002: Update tlslite to 0.4.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Executable bit and --similarity=80 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/tlslite/scripts/tlsdb.py ('k') | third_party/tlslite/test/clientCryptoIDChain.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 import sys 3 # Author: Trevor Perrin
4 from distutils.core import setup, Extension 4 # See the LICENSE file for legal information regarding use of this file.
5 5
6 if sys.version_info < (2, 2): 6 from distutils.core import setup
7 raise AssertionError("Python 2.2 or later required")
8
9 if sys.platform == "win32":
10 ext = Extension("tlslite.utils.win32prng",
11 sources=["tlslite/utils/win32prng.c"],
12 libraries=["advapi32"])
13 exts = [ext]
14 else:
15 exts = None
16 7
17 setup(name="tlslite", 8 setup(name="tlslite",
18 version="0.3.8", 9 version="0.4.6",
19 author="Trevor Perrin", 10 author="Trevor Perrin",
20 author_email="trevp@trevp.net", 11 author_email="tlslite@trevp.net",
21 url="http://trevp.net/tlslite/", 12 url="http://trevp.net/tlslite/",
22 description="tlslite implements SSL and TLS with SRP, shared-keys, cryptoI D, or X.509 authentication.", 13 description="tlslite implements SSL and TLS.",
23 license="public domain", 14 license="public domain and BSD",
24 scripts=["scripts/tls.py", "scripts/tlsdb.py"], 15 scripts=["scripts/tls.py", "scripts/tlsdb.py"],
25 packages=["tlslite", "tlslite.utils", "tlslite.integration"], 16 packages=["tlslite", "tlslite.utils", "tlslite.integration"],)
26 ext_modules=exts)
OLDNEW
« no previous file with comments | « third_party/tlslite/scripts/tlsdb.py ('k') | third_party/tlslite/test/clientCryptoIDChain.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698