forked from ParallelSSH/parallel-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
99 lines (83 loc) · 3.47 KB
/
setup.py
File metadata and controls
99 lines (83 loc) · 3.47 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Copyright (C) 2014-2017 Panos Kittenis and contributors
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import os
import platform
from setuptools import setup, find_packages
from platform import python_version
import versioneer
try:
from Cython.Distutils.extension import Extension
from Cython.Distutils import build_ext
except ImportError:
from setuptools import Extension
USING_CYTHON = False
else:
USING_CYTHON = True
gevent_req = 'gevent<=1.1' if python_version() < '2.7' else 'gevent>=1.1'
cython_directives = {'embedsignature': True,
'boundscheck': False,
'optimize.use_switch': True,
'wraparound': False,
}
_embedded_lib = bool(os.environ.get('EMBEDDED_LIB', 1))
cython_args = {'cython_directives': cython_directives,
'cython_compile_time_env': {'EMBEDDED_LIB': _embedded_lib},
} if USING_CYTHON else {}
_libs = ['ssh2'] if platform.system() != 'Windows' else [
# For libssh2 OpenSSL backend on Windows.
# Windows native WinCNG is used by default.
# 'libeay32', 'ssleay32',
'Ws2_32', 'libssh2', 'user32']
ext = 'pyx' if USING_CYTHON else 'c'
_comp_args = ["-O3"] if platform.system() != 'Windows' else None
extensions = [
Extension('pssh.native._ssh2',
sources=['pssh/native/_ssh2.%s' % ext],
include_dirs=["libssh2/include"],
libraries=_libs,
extra_compile_args=_comp_args,
**cython_args
)]
cmdclass = versioneer.get_cmdclass()
if USING_CYTHON:
cmdclass['build_ext'] = build_ext
setup(name='parallel-ssh',
version=versioneer.get_version(),
cmdclass=cmdclass,
description='Asynchronous parallel SSH library',
long_description=open('README.rst').read(),
author='Panos Kittenis',
url="https://github.com/ParallelSSH/parallel-ssh",
packages=find_packages(
'.', exclude=('embedded_server', 'embedded_server.*',
'tests', 'tests.*',
'*.tests', '*.tests.*')
),
install_requires=['paramiko<2.2', gevent_req, 'ssh2-python>=0.6.0'],
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: Microsoft :: Windows',
],
ext_modules=extensions,
)