Merge branch '1.13'

This commit is contained in:
Jeff Forcier 2014-03-21 11:21:41 -07:00
commit e058c6bae0
1 changed files with 28 additions and 18 deletions

View File

@ -53,21 +53,31 @@ if sys.platform == 'darwin':
setup_helper.install_custom_make_tarball()
setup(name = "paramiko",
setup(
name = "paramiko",
version = "1.13.0",
description = "SSH2 protocol library",
long_description = longdesc,
author = "Jeff Forcier",
author_email = "jeff@bitprophet.org",
url = "https://github.com/paramiko/paramiko/",
packages = [ 'paramiko' ],
license = 'LGPL',
platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable',
classifiers = [
'Development Status :: 5 - Production/Stable',
'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,
'Topic :: Security :: Cryptography',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
**kw
)