forked from ronf/asyncssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·79 lines (69 loc) · 2.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3.6
# Copyright (c) 2013-2019 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
"""AsyncSSH: Asynchronous SSHv2 client and server library
AsyncSSH is a Python package which provides an asynchronous client and
server implementation of the SSHv2 protocol on top of the Python asyncio
framework. It requires Python 3.4 or later and either the PyCA library or
the PyCrypto library for some cryptographic functions.
"""
from os import path
from setuptools import setup
base_dir = path.abspath(path.dirname(__file__))
doclines = __doc__.split('\n', 1)
with open(path.join(base_dir, 'README.rst')) as desc:
long_description = desc.read()
with open(path.join(base_dir, 'asyncssh', 'version.py')) as version:
exec(version.read())
setup(name = 'asyncssh',
version = __version__,
author = __author__,
author_email = __author_email__,
url = __url__,
license = 'Eclipse Public License v2.0',
description = doclines[0],
long_description = long_description,
platforms = 'Any',
install_requires = ['cryptography >= 2.6.1'],
extras_require = {
'bcrypt': ['bcrypt >= 3.1.3'],
'gssapi': ['gssapi >= 1.2.0'],
'libnacl': ['libnacl >= 1.4.2'],
'pyOpenSSL': ['pyOpenSSL >= 17.0.0'],
'pypiwin32': ['pypiwin32 >= 219']
},
packages = ['asyncssh', 'asyncssh.crypto'],
scripts = [],
test_suite = 'tests',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'])