forked from wlav/CPyCppyy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·134 lines (105 loc) · 4.33 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
import codecs, glob, os, sys, subprocess
from setuptools import setup, find_packages, Extension
from distutils import log
from distutils.command.build_ext import build_ext as _build_ext
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
has_wheel = True
except ImportError:
has_wheel = False
requirements = ['cppyy-cling==6.28.0', 'cppyy-backend==1.14.11']
setup_requirements = ['wheel']
if 'build' in sys.argv or 'install' in sys.argv:
setup_requirements += requirements
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
#
# platform-dependent helpers
#
def _get_link_libraries():
if 'win32' in sys.platform:
return ['libcppyy_backend', 'libCoreLegacy']
return []
def _get_link_dirs():
if 'win32' in sys.platform:
try:
import cppyy_backend
return [os.path.join(os.path.dirname(cppyy_backend.__file__), 'lib')]
except ImportError: # happens during egg_info and other non-build/install commands
pass
return []
def _get_config_exec():
return [sys.executable, '-m', 'cppyy_backend._cling_config']
def get_cflags():
config_exec_args = _get_config_exec()
config_exec_args.append('--auxcflags')
cli_arg = subprocess.check_output(config_exec_args)
return cli_arg.decode("utf-8").strip()
#
# customized commands
#
class my_build_extension(_build_ext):
def build_extension(self, ext):
ext.extra_compile_args += ['-g']+get_cflags().split()
if ('linux' in sys.platform) or ('darwin' in sys.platform):
if 'clang' in self.compiler.compiler_cxx[0]:
ext.extra_compile_args += \
['-Wno-bad-function-cast'] # clang for same
elif 'g++' in self.compiler.compiler_cxx[0]:
ext.extra_compile_args += \
['-Wno-cast-function-type', # g++ >8.2, complaint of CPyFunction cast
'-Wno-unknown-warning'] # since clang/g++ don't have the same options
ext.extra_compile_args += \
['-Wno-register', # C++17, Python headers
'-Wno-strict-aliasing'] # not all Pythons provide this
if 'linux' in sys.platform:
ext.extra_link_args += ['-Wl,-Bsymbolic-functions']
elif 'win32' in sys.platform:
# /EHsc and sometimes /MT are hardwired in distutils, but the compiler/linker will
# let the last argument take precedence
ext.extra_compile_args += ['/GR', '/EHsc-', '/MD']
ext.extra_link_args += ['/EXPORT:_Init_thread_abort', '/EXPORT:_Init_thread_epoch',
'/EXPORT:_Init_thread_footer', '/EXPORT:_Init_thread_header', '/EXPORT:_tls_index']
return _build_ext.build_extension(self, ext)
cmdclass = {
'build_ext': my_build_extension }
setup(
name='CPyCppyy',
version='1.12.13',
description='Cling-based Python-C++ bindings for CPython',
long_description=long_description,
url='http://cppyy.readthedocs.io/',
# Author details
author='Wim Lavrijsen',
author_email='[email protected]',
license='LBNL BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Interpreters',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: C',
'Programming Language :: C++',
'Natural Language :: English'
],
setup_requires=setup_requirements,
install_requires=requirements,
keywords='C++ bindings data science',
ext_modules=[Extension('libcppyy',
sources=glob.glob(os.path.join('src', '*.cxx')),
include_dirs=['include'],
libraries=_get_link_libraries(),
library_dirs=_get_link_dirs())],
headers=glob.glob(os.path.join('include', 'CPyCppyy', '*.h')),
cmdclass=cmdclass,
zip_safe=False,
)