forked from paramiko/paramiko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Robey Pointer
committed
Nov 2, 2009
1 parent
e0a9f91
commit cb913d5
Showing
7 changed files
with
20 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright (C) 2003-2008 Robey Pointer <[email protected]> | ||
# Copyright (C) 2003-2009 Robey Pointer <[email protected]> | ||
# | ||
# This file is part of paramiko. | ||
# | ||
|
@@ -47,7 +47,7 @@ | |
Website: U{http://www.lag.net/paramiko/} | ||
@version: 1.7.5 (Ernest) | ||
@version: 1.7.6 (Fanny) | ||
@author: Robey Pointer | ||
@contact: [email protected] | ||
@license: GNU Lesser General Public License (LGPL) | ||
|
@@ -60,9 +60,9 @@ | |
|
||
|
||
__author__ = "Robey Pointer <[email protected]>" | ||
__date__ = "19 Jul 2009" | ||
__version__ = "1.7.5 (Ernest)" | ||
__version_info__ = (1, 7, 5) | ||
__date__ = "1 Nov 2009" | ||
__version__ = "1.7.6 (Fanny)" | ||
__version_info__ = (1, 7, 6) | ||
__license__ = "GNU Lesser General Public License (LGPL)" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,20 +41,20 @@ | |
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 = "[email protected]", | ||
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', | ||
|