-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
118 lines (94 loc) · 3.94 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
import os
import re
import subprocess
import platform
import sys
from setuptools import Extension, setup
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
def log(msg):
sys.stderr.write(f"scihook setup.py: {str(msg)}\n")
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=""):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
def run(self):
try:
out = subprocess.check_output(['cmake', '--version'])
except OSError:
raise RuntimeError(f"CMake must be installed to build the following extensions: {','.join(e.name for e in self.extensions)}")
self.cmake_version = LooseVersion(re.search(r'version\s*([\d.]+)', out.decode()).group(1))
if self.cmake_version < '3.12.1':
raise RuntimeError("CMake >= 3.12.1 is required")
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
env = os.environ.copy()
ext_dir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
build_dir = os.path.abspath(self.build_temp)
install_dir = ext_dir
if not ext_dir.endswith(os.path.sep):
ext_dir += os.path.sep
rpaths = [
'$ORIGIN/../lib', '$ORIGIN/../lib64',
'$ORIGIN/lib', '$ORIGIN/lib64'
]
cmake_args = [
f"-DPYTHON_EXECUTABLE={sys.executable}",
f"-DCMAKE_INSTALL_PREFIX={install_dir}",
f"-DCMAKE_INSTALL_RPATH={':'.join(rpaths)}",
f"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON",
]
if 'SCIHOOK_ROOT' in env:
cmake_args += [ f"-DSCIHOOK_ROOT={env['SCIHOOK_ROOT']}" ]
cfg = 'Debug' if self.debug else 'Release'
build_args = [ '--config', cfg ]
if platform.system() == "Windows":
if sys.maxsize > 2**32:
cmake_args += [ '-A', 'x64' ]
build_args += [ '--', '/m' ]
else:
cmake_args += [ f"-DCMAKE_BUILD_TYPE={cfg}" ]
import multiprocessing
build_args += [ '--', '-j', str(multiprocessing.cpu_count()) ]
env['CXXFLAGS'] = f'{env.get("CXXFLAGS", "")} -DVERSION_INFO="{self.distribution.get_version()}"'
if not os.path.exists(build_dir):
os.makedirs(build_dir)
subprocess.check_call(["cmake", ext.sourcedir] + cmake_args, cwd=build_dir)
subprocess.check_call(["cmake", "--build", "."] + build_args, cwd=build_dir)
if self.cmake_version >= '3.15.0':
subprocess.check_call(['cmake', '--install', '.'], cwd=build_dir)
else:
if platform.system() == 'Windows':
raise RuntimeError('"make install" Windows equivalent not implemented! please use cmake >= 3.15')
else:
subprocess.check_call(['make', 'install'], cwd=build_dir)
ext_modules = [
CMakeExtension("scihook._scihook", sourcedir="src/bindings")
]
try:
scihook_version = open('version.txt', 'r').read().strip()
except:
raise RuntimeError("Could not find scihook's 'version.txt' file. Please make sure you are in SciHook's root directory.")
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="scihook",
version=scihook_version,
author="Dorian Leroy",
author_email="[email protected]",
url="https://github.com/cea-hpc/scihook",
description="A Python logging and monitoring toolbox for C++ applications.",
long_description=long_description,
long_description_content_type='text/markdown',
packages=["scihook"],
package_dir={"": "src/bindings"},
ext_modules=ext_modules,
cmdclass={"build_ext": CMakeBuild},
extras_require={"test": "pytest"},
test_suite='tests',
zip_safe=False,
python_requires=">=3.8",
)