31 lines
1.2 KiB
Python
31 lines
1.2 KiB
Python
|
from distutils.core import setup
|
||
|
|
||
|
longdesc = '''
|
||
|
This is a library for making client-side SSH2 connections (server-side is
|
||
|
coming soon). All major ciphers and hash methods are supported.
|
||
|
|
||
|
Required packages:
|
||
|
pyCrypto
|
||
|
'''
|
||
|
|
||
|
setup(name = "secsh",
|
||
|
version = "0.1-bulbasaur",
|
||
|
description = "SSH2 protocol library",
|
||
|
author = "Robey Pointer",
|
||
|
author_email = "robey@lag.net",
|
||
|
url = "http://www.lag.net/~robey/secsh/",
|
||
|
py_modules = [ 'secsh', 'transport', 'channel', 'message', 'util', 'ber',
|
||
|
'kex_group1', 'kex_gex', 'rsakey', 'dsskey' ],
|
||
|
scripts = [ 'demo.py' ],
|
||
|
download_url = 'http://www.lag.net/~robey/secsh/secsh-0.1-bulbasaur.zip',
|
||
|
license = 'LGPL',
|
||
|
platforms = 'Posix; MacOS X; Windows',
|
||
|
classifiers = [ 'Development Status :: 3 - Alpha',
|
||
|
'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,
|
||
|
)
|