-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
104 lines (84 loc) · 2.79 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
import os
from subprocess import check_output
import sys
# Numpy/mpi4py must be installed prior to installing FUNtoFEM
import numpy
import mpi4py
# Import distutils
from setuptools import setup, find_packages
from distutils.core import Extension as Ext
from Cython.Build import cythonize
from Cython.Compiler import Options
Options.docstrings = True
# Convert from local to absolute directories
def get_global_dir(files):
funtofem_root = os.path.abspath(os.path.dirname(__file__))
new = []
for f in files:
new.append(os.path.join(funtofem_root, f))
return new
def get_mpi_flags():
# Split the output from the mpicxx command
args = check_output(["mpicxx", "-show"]).decode("utf-8").split()
# Determine whether the output is an include/link/lib command
inc_dirs, lib_dirs, libs = [], [], []
for flag in args:
if flag[:2] == "-I":
inc_dirs.append(flag[2:])
elif flag[:2] == "-L":
lib_dirs.append(flag[2:])
elif flag[:2] == "-l":
libs.append(flag[2:])
return inc_dirs, lib_dirs, libs
inc_dirs, lib_dirs, libs = get_mpi_flags()
# Add funtofem-dev/lib as a runtime directory
runtime_lib_dirs = get_global_dir(["lib"])
# Relative paths for the include/library directories
rel_inc_dirs = ["src", "include"]
rel_lib_dirs = ["lib"]
libs.extend(["transfer_schemes"])
# Convert from relative to absolute directories
inc_dirs.extend(get_global_dir(rel_inc_dirs))
lib_dirs.extend(get_global_dir(rel_lib_dirs))
# Add the numpy/mpi4py directories
inc_dirs.extend([numpy.get_include(), mpi4py.get_include()])
exts = []
for mod in ["TransferScheme"]:
exts.append(
Ext(
"funtofem.%s" % (mod),
sources=["funtofem/%s.pyx" % (mod)],
include_dirs=inc_dirs,
libraries=libs,
library_dirs=lib_dirs,
runtime_library_dirs=runtime_lib_dirs,
)
)
for e in exts:
e.cython_directives = {"embedsignature": True, "binding": True}
optional_dependencies = {
"testing": ["testflo>=1.4.7"],
"docs": ["sphinx"],
"mphys": ["mphys>=1.1.0", "openmdao>=3.25.0"],
"plots": ["niceplots"],
}
# Add an optional dependency that concatenates all others
optional_dependencies["all"] = sorted(
[
dependency
for dependencies in optional_dependencies.values()
for dependency in dependencies
]
)
setup(
name="funtofem",
version="0.3.7",
description="Aerothermoelastic coupling framework and transfer schemes",
author="Graeme J. Kennedy",
author_email="[email protected]",
python_requires=">=3.9.0",
extras_require=optional_dependencies,
install_requires=["numpy<2.0.0", "mpi4py>=3.1.1"],
packages=find_packages(include=["funtofem*"]),
ext_modules=cythonize(exts, include_path=inc_dirs),
)