diff options
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', |