2003-11-04 03:34:24 -05:00
|
|
|
from distutils.core import setup
|
|
|
|
|
2005-02-28 03:06:08 -05:00
|
|
|
# Copyright (C) 2003-2005 Robey Pointer <robey@lag.net>
|
|
|
|
#
|
|
|
|
# This file is part of paramiko.
|
|
|
|
#
|
|
|
|
# Paramiko is free software; you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU Lesser General Public License as published by the Free
|
|
|
|
# Software Foundation; either version 2.1 of the License, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
#
|
|
|
|
# Paramiko is distrubuted in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
|
|
|
|
|
|
|
|
2003-11-04 03:34:24 -05:00
|
|
|
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
|
2005-02-26 16:11:04 -05:00
|
|
|
are supported. SFTP client and server mode are both 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",
|
2005-10-30 22:28:54 -05:00
|
|
|
version = "1.5.1",
|
2003-11-04 03:34:24 -05:00
|
|
|
description = "SSH2 protocol library",
|
|
|
|
author = "Robey Pointer",
|
|
|
|
author_email = "robey@lag.net",
|
2004-12-12 04:58:40 -05:00
|
|
|
url = "http://www.lag.net/paramiko/",
|
2004-01-04 05:07:35 -05:00
|
|
|
packages = [ 'paramiko' ],
|
2005-10-30 22:28:54 -05:00
|
|
|
download_url = 'http://www.lag.net/paramiko/download/paramiko-1.5.1.zip',
|
2003-11-04 03:34:24 -05:00
|
|
|
license = 'LGPL',
|
|
|
|
platforms = 'Posix; MacOS X; Windows',
|
2005-07-13 22:51:31 -04:00
|
|
|
classifiers = [ 'Development Status :: 5 - Production/Stable',
|
2003-11-04 03:34:24 -05:00
|
|
|
'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,
|
|
|
|
)
|