2009-07-19 22:45:02 -04:00
|
|
|
# Copyright (C) 2003-2008 Robey Pointer <robeypointer@gmail.com>
|
2005-02-28 03:06:08 -05:00
|
|
|
#
|
|
|
|
# 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.,
|
2012-02-25 03:11:54 -05:00
|
|
|
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.
|
2005-02-28 03:06:08 -05:00
|
|
|
|
|
|
|
|
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:
|
2005-12-16 12:59:05 -05:00
|
|
|
pyCrypto
|
2011-11-17 20:00:17 -05:00
|
|
|
|
2012-09-26 01:09:49 -04:00
|
|
|
To install the `in-development version
|
|
|
|
<https://github.com/paramiko/paramiko/tarball/master#egg=paramiko-dev>`_, use
|
|
|
|
`pip install paramiko==dev`.
|
2003-11-04 03:34:24 -05:00
|
|
|
'''
|
|
|
|
|
2005-12-16 12:59:05 -05:00
|
|
|
# if someday we want to *require* setuptools, uncomment this:
|
|
|
|
# (it will cause setuptools to be automatically downloaded)
|
|
|
|
#import ez_setup
|
|
|
|
#ez_setup.use_setuptools()
|
|
|
|
|
2006-09-12 03:31:53 -04:00
|
|
|
import sys
|
2005-12-16 12:59:05 -05:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
kw = {
|
2012-09-23 17:36:56 -04:00
|
|
|
'install_requires': 'pycrypto >= 2.1, != 2.4',
|
2005-12-16 12:59:05 -05:00
|
|
|
}
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
kw = {}
|
2009-11-02 01:01:04 -05:00
|
|
|
|
2006-09-12 03:31:53 -04:00
|
|
|
if sys.platform == 'darwin':
|
2012-03-10 21:02:39 -05:00
|
|
|
import setup_helper
|
|
|
|
setup_helper.install_custom_make_tarball()
|
2006-09-12 03:31:53 -04:00
|
|
|
|
2005-12-16 12:59:05 -05:00
|
|
|
|
2003-11-10 03:49:50 -05:00
|
|
|
setup(name = "paramiko",
|
2012-11-06 16:06:08 -05:00
|
|
|
version = "1.9.0",
|
2003-11-04 03:34:24 -05:00
|
|
|
description = "SSH2 protocol library",
|
2012-09-23 17:24:27 -04:00
|
|
|
author = "Jeff Forcier",
|
|
|
|
author_email = "jeff@bitprophet.org",
|
2012-08-11 22:04:16 -04:00
|
|
|
url = "https://github.com/paramiko/paramiko/",
|
2004-01-04 05:07:35 -05:00
|
|
|
packages = [ 'paramiko' ],
|
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,
|
2005-12-16 12:59:05 -05:00
|
|
|
**kw
|
2003-11-04 03:34:24 -05:00
|
|
|
)
|