diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | README | 10 | ||||
-rw-r--r-- | paramiko/__init__.py | 6 | ||||
-rw-r--r-- | setup.py | 6 |
4 files changed, 15 insertions, 8 deletions
@@ -3,6 +3,7 @@ # bulbasaur (18sep03) # charmander (10nov03) # doduo (04jan04) - 0.9 +# eevee (08mar04) release: python ./setup.py sdist --formats=zip @@ -1,5 +1,5 @@ paramiko 0.9 -"doduo" release, 04 jan 2004 +"eevee" release, 08 mar 2004 Copyright (c) 2003-2004 Robey Pointer <robey@lag.net> @@ -80,10 +80,16 @@ folder. point your browser there. seriously, do it. mad props to epydoc, which actually motivated me to write more documentation than i ever would have before. +there are also unit tests here: + $ python2 ./test.py +which will verify that some of the core components are working correctly. +not much is tested yet, but it's a start. the tests for SFTP are probably +the best and easiest examples of how to use the SFTP class. + *** MISSING LINKS * ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr) * multi-part auth not supported (ie, need username AND pk) * server mode needs better documentation -* sftp? +* sftp server mode diff --git a/paramiko/__init__.py b/paramiko/__init__.py index f8d5cbd2..80cae55c 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL). Website: U{http://www.lag.net/~robey/paramiko/} -@version: 0.9 (doduo) +@version: 0.9 (eevee) @author: Robey Pointer @contact: robey@lag.net @license: GNU Lesser General Public License (LGPL) @@ -61,8 +61,8 @@ if (sys.version_info[0] < 2) or ((sys.version_info[0] == 2) and (sys.version_inf __author__ = "Robey Pointer <robey@lag.net>" -__date__ = "04 Jan 2004" -__version__ = "0.9-doduo" +__date__ = "08 Mar 2004" +__version__ = "0.9-eevee" #__credits__ = "Huzzah!" __license__ = "GNU Lesser General Public License (LGPL)" @@ -6,20 +6,20 @@ Emphasis is on using SSH2 as an alternative to SSL for making secure connections between python scripts. All major ciphers and hash methods are supported. -(Previous name: secsh) +SFTP client mode is now supported too. Required packages: pyCrypt ''' setup(name = "paramiko", - version = "0.9-doduo", + version = "0.9-eevee", description = "SSH2 protocol library", author = "Robey Pointer", author_email = "robey@lag.net", url = "http://www.lag.net/~robey/paramiko/", packages = [ 'paramiko' ], - download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.9-doduo.zip', + download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.9-eevee.zip', license = 'LGPL', platforms = 'Posix; MacOS X; Windows', classifiers = [ 'Development Status :: 3 - Alpha', |