-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
195 lines (157 loc) · 5.34 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
192
193
194
195
import os
import re
import sys
import platform
import subprocess
from sysconfig import get_paths, get_config_vars
import versioneer
from setuptools import setup, Extension, find_packages, Command
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system(
"rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info ./psvWave/*.so ./*.so "
"__pycache__/ .pytest_cache/ psvWave/__pycache__/ CMakeCache.txt "
"cmake_install.cmake CMakeFiles"
)
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):
if not (platform.system() == "Linux" or platform.system() == "Darwin"):
raise RuntimeError(
f"Windows is not supported. Your system: {platform.system()}."
)
try:
out = subprocess.check_output(["cmake", "--version"])
print(out)
except OSError:
raise RuntimeError(
"CMake must be installed to build the following extensions: "
+ ", ".join(e.name for e in self.extensions)
)
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
import pybind11
# Set the right variables for PyBind. These are overwritten by env variables if
# defined, in CMakeLists.
suffix = get_config_vars()["EXT_SUFFIX"]
python_includes = get_paths()["include"]
pybind_includes = pybind11.get_include()
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
# required for auto-detection of auxiliary "native" libs
if not extdir.endswith(os.path.sep):
extdir += os.path.sep
cmake_args = [
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + extdir,
"-DPYBIND_INCLUDES=" + pybind_includes,
"-DPYTHON_INCLUDES=" + python_includes,
"-DSUFFIX=" + suffix,
]
cfg = "Debug" if self.debug else "Release"
build_args = ["--config", cfg]
cmake_args += [
"-DCMAKE_BUILD_TYPE=" + cfg,
]
build_args += ["--", "-j2"]
env = os.environ.copy()
env["CXXFLAGS"] = '{} -DVERSION_INFO=\\"{}\\"'.format(
env.get("CXXFLAGS", ""), self.distribution.get_version()
)
if platform.system() == "Darwin":
print("Trying to set GCC compiler manually...")
import glob
try:
gcc_loc = glob.glob("/opt/homebrew/Cellar/gcc/*/bin")[0]
except IndexError:
raise Exception("Couldn't find GCC, exiting...")
print(f"Found GCC loc at {gcc_loc}")
cmake_args += [
f"-DCMAKE_C_COMPILER={gcc_loc}/gcc-11",
f"-DCMAKE_CXX_COMPILER={gcc_loc}/g++-11",
]
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
out = subprocess.Popen(
["cmake", ext.sourcedir] + cmake_args,
cwd=self.build_temp,
env=env,
stdout=subprocess.PIPE,
)
result = out.communicate()[0]
print(result.decode())
out = subprocess.Popen(
["cmake", "--build", ".", "--target", "psvWave_cpp"] + build_args,
cwd=self.build_temp,
)
result = out.communicate()
print(f"CMAKE RETURN {result}")
assert out.returncode is not None
assert out.returncode == 0
with open("README.md", "r") as fh:
long_description = fh.read()
cmd_classes = versioneer.get_cmdclass()
cmd_classes["build_ext"] = CMakeBuild
cmd_classes["clean"] = CleanCommand
setup(
version=versioneer.get_version(),
cmdclass=cmd_classes,
name="psvWave",
author="Lars Gebraad",
author_email="[email protected]",
description="P-SV wave propagation in 2D for FWI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/larsgeb/forward-virieux",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"numpy",
"cmake",
"pybind11",
"matplotlib",
"ipywidgets",
"scipy",
],
extras_require={
"dev": [
# Runtime
"numpy",
"matplotlib",
# Build
"cmake",
"pybind11",
# Test
"pytest",
# Development
"setuptools",
"black",
"flake8",
"versioneer",
# Documentation
"sphinx",
"sphinx_rtd_theme",
"breathe",
"m2r2",
"htmlmin",
]
},
ext_modules=[CMakeExtension("__psvWave_cpp", ".")],
zip_safe=False,
)