Indent/order shuffle, no actionable changes
This commit is contained in:
parent
233f53bb37
commit
695527c9ee
49
setup.py
49
setup.py
|
@ -51,26 +51,29 @@ if sys.platform == 'darwin':
|
||||||
setup_helper.install_custom_make_tarball()
|
setup_helper.install_custom_make_tarball()
|
||||||
|
|
||||||
|
|
||||||
setup(name = "paramiko",
|
setup(
|
||||||
version = "1.11.5",
|
name = "paramiko",
|
||||||
description = "SSH2 protocol library",
|
version = "1.11.5",
|
||||||
author = "Jeff Forcier",
|
description = "SSH2 protocol library",
|
||||||
author_email = "jeff@bitprophet.org",
|
long_description = longdesc,
|
||||||
url = "https://github.com/paramiko/paramiko/",
|
author = "Jeff Forcier",
|
||||||
packages = [ 'paramiko' ],
|
author_email = "jeff@bitprophet.org",
|
||||||
license = 'LGPL',
|
url = "https://github.com/paramiko/paramiko/",
|
||||||
platforms = 'Posix; MacOS X; Windows',
|
packages = [ 'paramiko' ],
|
||||||
classifiers = [ 'Development Status :: 5 - Production/Stable',
|
license = 'LGPL',
|
||||||
'Intended Audience :: Developers',
|
platforms = 'Posix; MacOS X; Windows',
|
||||||
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
|
classifiers = [
|
||||||
'Operating System :: OS Independent',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Topic :: Internet',
|
'Intended Audience :: Developers',
|
||||||
'Topic :: Security :: Cryptography',
|
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
|
||||||
'Programming Language :: Python',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python :: 2',
|
'Topic :: Internet',
|
||||||
'Programming Language :: Python :: 2.6',
|
'Topic :: Security :: Cryptography',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 2 :: Only' ],
|
'Programming Language :: Python :: 2',
|
||||||
long_description = longdesc,
|
'Programming Language :: Python :: 2.6',
|
||||||
**kw
|
'Programming Language :: Python :: 2.7',
|
||||||
)
|
'Programming Language :: Python :: 2 :: Only',
|
||||||
|
],
|
||||||
|
**kw
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue