diff options
author | Robey Pointer <robey@lag.net> | 2003-11-10 08:49:50 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2003-11-10 08:49:50 +0000 |
commit | 11815d4d837314a51ebf919c1a61cb0f68a3c02b (patch) | |
tree | a87cdf5a7f3658375d0d6be642a5d8ddf46bbc36 /setup.py | |
parent | 2ff9f467517e1ff8916e1adbdaf342d0468b4ebb (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-9]
rename secsh -> paramiko
also, rename SecshException back to SSHException. sigh. :)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -6,20 +6,22 @@ Emphasis is on using SSH2 as an alternative to SSL for making secure connections between pyton scripts. All major ciphers and hash methods are supported. +(Previous name: secsh) + Required packages: pyCrypto ''' -setup(name = "secsh", +setup(name = "paramiko", version = "0.1-charmander", description = "SSH2 protocol library", author = "Robey Pointer", author_email = "robey@lag.net", - url = "http://www.lag.net/~robey/secsh/", - py_modules = [ 'secsh', 'transport', 'auth_transport', 'channel', + url = "http://www.lag.net/~robey/paramiko/", + py_modules = [ 'paramiko', 'transport', 'auth_transport', 'channel', 'message', 'util', 'ber', 'kex_group1', 'kex_gex', 'rsakey', 'dsskey' ], - download_url = 'http://www.lag.net/~robey/secsh/secsh-0.1-charmander.zip', + download_url = 'http://www.lag.net/~robey/paramiko/paramiko-0.1-charmander.zip', license = 'LGPL', platforms = 'Posix; MacOS X; Windows', classifiers = [ 'Development Status :: 3 - Alpha', |