summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--README10
-rw-r--r--paramiko/__init__.py6
-rw-r--r--setup.py6
4 files changed, 15 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 67d129a1..1789246b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
# bulbasaur (18sep03)
# charmander (10nov03)
# doduo (04jan04) - 0.9
+# eevee (08mar04)
release:
python ./setup.py sdist --formats=zip
diff --git a/README b/README
index b7647cff..b7284cc2 100644
--- a/README
+++ b/README
@@ -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)"
diff --git a/setup.py b/setup.py
index 9ffe9921..eb691dbc 100644
--- a/setup.py
+++ b/setup.py
@@ -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',