forked from ParallelSSH/ssh-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
128 lines (113 loc) · 3.72 KB
/
setup.py
File metadata and controls
128 lines (113 loc) · 3.72 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import platform
import os
import sys
from glob import glob
from _setup_libssh import build_ssh
import versioneer
from setuptools import setup, find_packages
cpython = platform.python_implementation() == 'CPython'
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
# Only build libssh if running a build
if (len(sys.argv) >= 2 and not (
'--help' in sys.argv[1:] or
sys.argv[1] in (
'--help-commands', 'egg_info', '--version', 'clean',
'sdist', '--long-description')) and
__name__ == '__main__'):
build_ssh()
ON_WINDOWS = platform.system() == 'Windows'
ext = 'pyx' if USING_CYTHON else 'c'
sources = glob('ssh/*.%s' % (ext,))
_libs = ['ssh'] if not ON_WINDOWS else [
'Ws2_32', 'libssh', 'user32',
'libeay32MD', 'ssleay32MD',
'zlibstatic',
]
# _comp_args = ["-ggdb"]
_comp_args = ["-O3"] if not ON_WINDOWS else None
cython_directives = {
'embedsignature': True,
'boundscheck': False,
'optimize.use_switch': True,
'wraparound': False,
}
cython_args = {
'cython_directives': cython_directives,
'cython_compile_time_env': {
# Compile flags here
}} \
if USING_CYTHON else {}
if USING_CYTHON:
sys.stdout.write("Cython arguments: %s%s" % (cython_args, os.linesep))
_lib_dir = os.path.abspath("./src/src")
extensions = [
Extension(
sources[i].split('.')[0].replace(os.path.sep, '.'),
sources=[sources[i]],
include_dirs=["libssh/include"],
libraries=_libs,
library_dirs=[_lib_dir],
runtime_library_dirs=["$ORIGIN/."],
extra_compile_args=_comp_args,
**cython_args
)
for i in range(len(sources))]
package_data = {'ssh': ['*.pxd', 'libssh.so*']}
if ON_WINDOWS:
package_data['ssh'].extend([
'libeay32.dll', 'ssleay32.dll',
])
cmdclass = versioneer.get_cmdclass()
if USING_CYTHON:
cmdclass['build_ext'] = build_ext
setup(
name='ssh-python',
version=versioneer.get_version(),
cmdclass=cmdclass,
url='https://github.com/ParallelSSH/ssh-python',
license='LGPLv2',
author='Panos Kittenis',
author_email='22e889d8@opayq.com',
description=('Wrapper for libssh C library.'),
long_description=open('README.rst').read(),
packages=find_packages(
'.', exclude=('embedded_server', 'embedded_server.*',
'tests', 'tests.*',
'*.tests', '*.tests.*')),
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: C',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Shells',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: MacOS :: MacOS X',
],
ext_modules=extensions,
package_data=package_data,
)