Indent/order shuffle, no actionable changes

This commit is contained in:
Jeff Forcier 2014-03-21 11:09:31 -07:00
parent 233f53bb37
commit 695527c9ee
1 changed files with 26 additions and 23 deletions

View File

@ -51,16 +51,19 @@ if sys.platform == 'darwin':
setup_helper.install_custom_make_tarball() setup_helper.install_custom_make_tarball()
setup(name = "paramiko", setup(
name = "paramiko",
version = "1.11.5", version = "1.11.5",
description = "SSH2 protocol library", description = "SSH2 protocol library",
long_description = longdesc,
author = "Jeff Forcier", author = "Jeff Forcier",
author_email = "jeff@bitprophet.org", author_email = "jeff@bitprophet.org",
url = "https://github.com/paramiko/paramiko/", url = "https://github.com/paramiko/paramiko/",
packages = [ 'paramiko' ], packages = [ 'paramiko' ],
license = 'LGPL', license = 'LGPL',
platforms = 'Posix; MacOS X; Windows', platforms = 'Posix; MacOS X; Windows',
classifiers = [ 'Development Status :: 5 - Production/Stable', classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
@ -70,7 +73,7 @@ setup(name = "paramiko",
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only' ], 'Programming Language :: Python :: 2 :: Only',
long_description = longdesc, ],
**kw **kw
) )