diff options
author | Robey Pointer <robey@twitter.com> | 2009-11-01 22:01:04 -0800 |
---|---|---|
committer | Robey Pointer <robey@twitter.com> | 2009-11-01 22:01:04 -0800 |
commit | cb913d5d32b36f73a3ab202ea8a33f3e7e2d6a59 (patch) | |
tree | 8d2b4895a6c2a22d8f093592b9e1be815429cf88 /setup.py | |
parent | e0a9f91c149a10758694adfe574417566c650d0d (diff) |
bump to 1.7.6.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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.5", + version = "1.7.6", description = "SSH2 protocol library", author = "Robey Pointer", author_email = "robeypointer@gmail.com", url = "http://www.lag.net/paramiko/", packages = [ 'paramiko' ], - download_url = 'http://www.lag.net/paramiko/download/paramiko-1.7.5.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', |