-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (42 loc) · 1.39 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
import os
from shutil import copy
import pathlib
import glob
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext as build_ext_orig
class CMakeExtension(Extension):
def __init__(self, name):
# don't invoke the original build_ext for this special extension
super().__init__(name, sources=[])
class build_ext(build_ext_orig):
def run(self):
for ext in self.extensions:
self.build_cmake(ext)
def build_cmake(self, ext):
cwd = pathlib.Path().absolute()
build_temp = pathlib.Path(self.build_temp)
build_temp.mkdir(parents=True, exist_ok=True)
extdir = pathlib.Path(self.get_ext_fullpath(ext.name)).parent
extdir.mkdir(parents=True, exist_ok=True)
cmake_args = [
'-DCMAKE_BUILD_TYPE=RELEASE',
'-DFortran_COMPILER=mpifort',
'-DPYTHON_INTERFACE=on',
]
os.chdir(str(build_temp))
self.spawn(['cmake', str(cwd)] + cmake_args)
if not self.dry_run:
self.spawn(['make'])
for file in glob.glob('quicklb_lib.*.so'):
print("Copying: ", file)
copy(file, str(cwd)+"/"+str(extdir))
os.chdir(str(cwd))
setup(
name='quicklb',
version='0.1',
packages=['quicklb'],
ext_modules=[CMakeExtension('quicklb_lib')],
cmdclass={
'build_ext': build_ext,
},
)