[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-31]
bump version number to eevee bump the version number to eevee in a few places and talk about the unit tests.
This commit is contained in:
parent
e5193fb23f
commit
7cd7fced6e
1
Makefile
1
Makefile
|
@ -3,6 +3,7 @@
|
||||||
# bulbasaur (18sep03)
|
# bulbasaur (18sep03)
|
||||||
# charmander (10nov03)
|
# charmander (10nov03)
|
||||||
# doduo (04jan04) - 0.9
|
# doduo (04jan04) - 0.9
|
||||||
|
# eevee (08mar04)
|
||||||
|
|
||||||
release:
|
release:
|
||||||
python ./setup.py sdist --formats=zip
|
python ./setup.py sdist --formats=zip
|
||||||
|
|
10
README
10
README
|
@ -1,5 +1,5 @@
|
||||||
paramiko 0.9
|
paramiko 0.9
|
||||||
"doduo" release, 04 jan 2004
|
"eevee" release, 08 mar 2004
|
||||||
|
|
||||||
Copyright (c) 2003-2004 Robey Pointer <robey@lag.net>
|
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
|
which actually motivated me to write more documentation than i ever would
|
||||||
have before.
|
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
|
*** MISSING LINKS
|
||||||
|
|
||||||
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
|
* ctr forms of ciphers are missing (blowfish-ctr, aes128-ctr, aes256-ctr)
|
||||||
* multi-part auth not supported (ie, need username AND pk)
|
* multi-part auth not supported (ie, need username AND pk)
|
||||||
* server mode needs better documentation
|
* server mode needs better documentation
|
||||||
* sftp?
|
* sftp server mode
|
||||||
|
|
|
@ -48,7 +48,7 @@ released under the GNU Lesser General Public License (LGPL).
|
||||||
|
|
||||||
Website: U{http://www.lag.net/~robey/paramiko/}
|
Website: U{http://www.lag.net/~robey/paramiko/}
|
||||||
|
|
||||||
@version: 0.9 (doduo)
|
@version: 0.9 (eevee)
|
||||||
@author: Robey Pointer
|
@author: Robey Pointer
|
||||||
@contact: robey@lag.net
|
@contact: robey@lag.net
|
||||||
@license: GNU Lesser General Public License (LGPL)
|
@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>"
|
__author__ = "Robey Pointer <robey@lag.net>"
|
||||||
__date__ = "04 Jan 2004"
|
__date__ = "08 Mar 2004"
|
||||||
__version__ = "0.9-doduo"
|
__version__ = "0.9-eevee"
|
||||||
#__credits__ = "Huzzah!"
|
#__credits__ = "Huzzah!"
|
||||||
__license__ = "GNU Lesser General Public License (LGPL)"
|
__license__ = "GNU Lesser General Public License (LGPL)"
|
||||||
|
|
||||||
|
|
6
setup.py
6
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
|
connections between python scripts. All major ciphers and hash methods
|
||||||
are supported.
|
are supported.
|
||||||
|
|
||||||
(Previous name: secsh)
|
SFTP client mode is now supported too.
|
||||||
|
|
||||||
Required packages:
|
Required packages:
|
||||||
pyCrypt
|
pyCrypt
|
||||||
'''
|
'''
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(name = "paramiko",
|
||||||
version = "0.9-doduo",
|
version = "0.9-eevee",
|
||||||
description = "SSH2 protocol library",
|
description = "SSH2 protocol library",
|
||||||
author = "Robey Pointer",
|
author = "Robey Pointer",
|
||||||
author_email = "robey@lag.net",
|
author_email = "robey@lag.net",
|
||||||
url = "http://www.lag.net/~robey/paramiko/",
|
url = "http://www.lag.net/~robey/paramiko/",
|
||||||
packages = [ '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',
|
license = 'LGPL',
|
||||||
platforms = 'Posix; MacOS X; Windows',
|
platforms = 'Posix; MacOS X; Windows',
|
||||||
classifiers = [ 'Development Status :: 3 - Alpha',
|
classifiers = [ 'Development Status :: 3 - Alpha',
|
||||||
|
|
Loading…
Reference in New Issue