forked from jpype-project/jpype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
191 lines (164 loc) · 6.08 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import codecs
import platform
from glob import glob
import warnings
from setuptools import setup
from setuptools import Extension
from setuptools.command.build_ext import build_ext
"""
this parameter is used to opt out numpy support in _jpype library
"""
if "--disable-numpy" in sys.argv:
disabled_numpy = True
sys.argv.remove("--disable-numpy")
else:
disabled_numpy = False
class FeatureNotice(Warning):
""" indicate notices about features """
pass
def read_utf8(*parts):
filename = os.path.join(os.path.dirname(__file__), *parts)
return codecs.open(filename, encoding='utf-8').read()
def find_sources():
cpp_files = []
for dirpath, dirnames, filenames in os.walk('native'):
for filename in filenames:
if filename.endswith('.cpp') or filename.endswith('.c'):
cpp_files.append(os.path.join(dirpath, filename))
return cpp_files
platform_specific = {
'include_dirs': [
os.path.join('native', 'common', 'include'),
os.path.join('native', 'python', 'include'),
],
'sources': find_sources(),
}
fallback_jni = os.path.join('native', 'jni_include')
# try to include JNI first from eventually given JAVA_HOME, then from distributed
java_home = os.getenv('JAVA_HOME', '')
found_jni = False
if os.path.exists(java_home):
platform_specific['include_dirs'] += [os.path.join(java_home, 'include')]
# check if jni.h can be found
for d in platform_specific['include_dirs']:
if os.path.exists(os.path.join(d, 'jni.h')):
found_jni = True
break
if not found_jni:
import warnings
warnings.warn('Falling back to provided JNI headers, since your provided'
' JAVA_HOME %s does not provide jni.h' % java_home)
platform_specific['include_dirs'] += [fallback_jni]
else:
platform_specific['include_dirs'] += [fallback_jni]
if sys.platform == 'win32':
platform_specific['libraries'] = ['Advapi32']
platform_specific['define_macros'] = [('WIN32', 1)]
if found_jni:
platform_specific['include_dirs'] += [os.path.join(java_home, 'include', 'win32')]
elif sys.platform == 'darwin':
platform_specific['libraries'] = ['dl']
platform_specific['define_macros'] = [('MACOSX', 1)]
if found_jni:
platform_specific['include_dirs'] += [os.path.join(java_home, 'include', 'darwin')]
elif sys.platform.startswith('freebsd'):
if found_jni:
platform_specific['include_dirs'] += [os.path.join(java_home, 'include', 'freebsd')]
else: # linux etc.
platform_specific['libraries'] = ['dl']
if found_jni:
platform_specific['include_dirs'] += [os.path.join(java_home, 'include', 'linux')]
jpypeLib = Extension(name='_jpype', **platform_specific)
class my_build_ext(build_ext):
"""
Override some behavior in extension building:
1. Numpy:
If not opted out, try to use NumPy and define macro 'HAVE_NUMPY', so arrays
returned from Java can be wrapped efficiently in a ndarray.
2. handle compiler flags for different compilers via a dictionary.
3. try to disable warning ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
"""
# extra compile args
copt = {'msvc': ['/EHsc'],
'unix' : ['-ggdb'],
'mingw32' : [],
}
# extra link args
lopt = {
'msvc': [],
'unix': [],
'mingw32' : [],
}
def initialize_options(self, *args):
"""omit -Wstrict-prototypes from CFLAGS since its only valid for C code."""
from distutils.sysconfig import get_config_vars
(opt,) = get_config_vars('OPT')
if opt:
os.environ['OPT'] = ' '.join(flag for flag in opt.split()
if flag != '-Wstrict-prototypes')
build_ext.initialize_options(self)
def _set_cflags(self):
# set compiler flags
c = self.compiler.compiler_type
if c in self.copt:
for e in self.extensions:
e.extra_compile_args = self.copt[ c ]
if c in self.lopt:
for e in self.extensions:
e.extra_link_args = self.lopt[ c ]
def build_extensions(self):
self._set_cflags()
# handle numpy
if not disabled_numpy:
try:
import numpy
jpypeLib.define_macros.append(('HAVE_NUMPY', 1))
jpypeLib.include_dirs.append(numpy.get_include())
warnings.warn("Turned ON Numpy support for fast Java array access",
FeatureNotice)
except ImportError:
pass
else:
warnings.warn("Turned OFF Numpy support for fast Java array access",
FeatureNotice)
# has to be last call
build_ext.build_extensions(self)
setup(
name='JPype1',
version='0.5.7',
description='A Python to Java bridge.',
long_description=(read_utf8('README.rst') + '\n\n' +
read_utf8('doc/CHANGELOG.rst') + '\n\n' +
read_utf8('AUTHORS.rst')),
license='License :: OSI Approved :: Apache Software License',
author='Steve Menard',
author_email='devilwolf@users.sourceforge.net',
maintainer='Luis Nell',
maintainer_email='cooperate@originell.org',
url='https://github.com/originell/jpype/',
platforms=[
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows Vista',
'Operating System :: POSIX :: Linux',
],
classifiers=[
'Programming Language :: Java',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=[
'jpype', 'jpype.awt', 'jpype.awt.event', 'jpypex', 'jpypex.swing'],
package_dir={
'jpype': 'jpype',
'jpypex': 'jpypex',
},
extras_require = {'numpy' : ['numpy>=1.6']},
cmdclass={'build_ext': my_build_ext},
zip_safe=False,
ext_modules=[jpypeLib],
)