2003-11-04 03:34:24 -05:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
longdesc = '''
|
2003-11-09 23:54:02 -05:00
|
|
|
This is a library for making SSH2 connections (client or server).
|
|
|
|
Emphasis is on using SSH2 as an alternative to SSL for making secure
|
2003-12-30 02:18:20 -05:00
|
|
|
connections between python scripts. All major ciphers and hash methods
|
2003-11-09 23:54:02 -05:00
|
|
|
are supported.
|
2003-11-04 03:34:24 -05:00
|
|
|
|
2004-03-08 12:52:25 -05:00
|
|
|
SFTP client mode is now supported too.
|
2003-11-10 03:49:50 -05:00
|
|
|
|
2003-11-04 03:34:24 -05:00
|
|
|
Required packages:
|
2004-01-04 05:26:00 -05:00
|
|
|
pyCrypt
|
2003-11-04 03:34:24 -05:00
|
|
|
'''
|
|
|
|
|
2003-11-10 03:49:50 -05:00
|
|
|
setup(name = "paramiko",
|
2004-11-06 22:10:53 -05:00
|
|
|
version = "1.0",
|
2003-11-04 03:34:24 -05:00
|
|
|
description = "SSH2 protocol library",
|
|
|
|
author = "Robey Pointer",
|
|
|
|
author_email = "robey@lag.net",
|
2003-11-10 03:49:50 -05:00
|
|
|
url = "http://www.lag.net/~robey/paramiko/",
|
2004-01-04 05:07:35 -05:00
|
|
|
packages = [ 'paramiko' ],
|
2004-11-06 22:10:53 -05:00
|
|
|
download_url = 'http://www.lag.net/~robey/paramiko/paramiko-1.0.zip',
|
2003-11-04 03:34:24 -05:00
|
|
|
license = 'LGPL',
|
|
|
|
platforms = 'Posix; MacOS X; Windows',
|
|
|
|
classifiers = [ 'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Topic :: Internet',
|
|
|
|
'Topic :: Security :: Cryptography' ],
|
|
|
|
long_description = longdesc,
|
|
|
|
)
|