33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
from distutils.core import setup
|
|
|
|
longdesc = '''
|
|
This is a library for making SSH2 connections (client or server).
|
|
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.
|
|
|
|
SFTP client mode is now supported too.
|
|
|
|
Required packages:
|
|
pyCrypt
|
|
'''
|
|
|
|
setup(name = "paramiko",
|
|
version = "1.1",
|
|
description = "SSH2 protocol library",
|
|
author = "Robey Pointer",
|
|
author_email = "robey@lag.net",
|
|
url = "http://www.lag.net/paramiko/",
|
|
packages = [ 'paramiko' ],
|
|
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.1.zip',
|
|
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,
|
|
)
|