diff options
author | Jeremy T. Bouse <jbouse@debian.org> | 2009-11-27 16:25:55 -0500 |
---|---|---|
committer | Jeremy T. Bouse <jbouse@debian.org> | 2009-11-27 16:28:36 -0500 |
commit | f7b892905c62b94a6e54d115ee2d6d32d66af013 (patch) | |
tree | e98e4d71f62f37a514363fa35fff57390fab934e /setup.py | |
parent | e01182b1e91d796245e90e484d46416e52d8fd7d (diff) | |
download | python-paramiko-f7b892905c62b94a6e54d115ee2d6d32d66af013.tar python-paramiko-f7b892905c62b94a6e54d115ee2d6d32d66af013.tar.gz |
Imported Upstream version 1.7.6
Closes: #543784
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# Copyright (C) 2003-2008 Robey Pointer <robey@lag.net> +# Copyright (C) 2003-2008 Robey Pointer <robeypointer@gmail.com> # # This file is part of paramiko. # @@ -41,20 +41,20 @@ try: except ImportError: from distutils.core import setup kw = {} - + if sys.platform == 'darwin': import setup_helper setup_helper.install_custom_make_tarball() setup(name = "paramiko", - version = "1.7.4", + version = "1.7.6", description = "SSH2 protocol library", author = "Robey Pointer", - author_email = "robey@lag.net", + author_email = "robeypointer@gmail.com", url = "http://www.lag.net/paramiko/", packages = [ 'paramiko' ], - download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.4.zip', + download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.6.zip', license = 'LGPL', platforms = 'Posix; MacOS X; Windows', classifiers = [ 'Development Status :: 5 - Production/Stable', |