-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
167 lines (153 loc) · 4.83 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
# -*- coding: utf-8 -*-
# ---------------------------------------------------------------------
#
# _____ _ _ _ __ __ ____ __ __
# | ____|__| | ___| |_ _____(_)___ ___| \/ | _ \| \/ |
# | _| / _` |/ _ \ \ \ /\ / / _ \ / __/ __| |\/| | |_) | |\/| |
# | |__| (_| | __/ |\ V V / __/ \__ \__ \ | | | __/| | | |
# |_____\__,_|\___|_| \_/\_/ \___|_|___/___/_| |_|_| |_| |_|
#
#
# Unit of Strength of Materials and Structural Analysis
# University of Innsbruck,
# 2023 - today
#
# Matthias Neuner matthias.neuner@uibk.ac.at
#
# This file is part of EdelweissMPM.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# The full text of the license can be found in the file LICENSE.md at
# the top level directory of EdelweissMPM.
# ---------------------------------------------------------------------
from setuptools import setup
from setuptools.extension import Extension
from setuptools import find_packages
from Cython.Build import cythonize, build_ext
from os.path import expanduser, join
import numpy
import sys
import os
directives = {
"boundscheck": False,
"wraparound": False,
"nonecheck": False,
"initializedcheck": False,
}
default_install_prefix = sys.prefix
print("*" * 80)
print("EdelweissMPM setup")
print("System prefix: " + sys.prefix)
print("*" * 80)
marmot_dir = expanduser(os.environ.get("MARMOT_INSTALL_DIR", default_install_prefix))
print("Marmot install directory (overwrite via environment var. MARMOT_INSTALL_DIR):")
print(marmot_dir)
print("*" * 80)
extensions = list()
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/cells/marmotcell/marmotcell.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
libraries=["Marmot"],
library_dirs=[join(marmot_dir, "lib")],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/cells/marmotcell/lagrangianmarmotcell.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
libraries=["Marmot"],
library_dirs=[join(marmot_dir, "lib")],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/cells/marmotcell/bsplinemarmotcell.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
libraries=["Marmot"],
library_dirs=[join(marmot_dir, "lib")],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/mpmmanagers/utils.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/fieldoutput/mpresultcollector.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/materialpoints/marmotmaterialpoint/mp.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
libraries=["Marmot"],
library_dirs=[join(marmot_dir, "lib")],
runtime_library_dirs=[join(marmot_dir, "lib")],
language="c++",
)
]
extensions += [
Extension(
"*",
sources=[
"edelweissmpm/solvers/nqsmarmotparallel.pyx",
],
include_dirs=[join(marmot_dir, "include"), numpy.get_include()],
language="c++",
extra_compile_args=[
"-fopenmp",
"-Wno-maybe-uninitialized",
],
extra_link_args=["-fopenmp"],
)
]
setup(
name="EdelweissMPM",
version="v24.04",
description="EdelweissMPM: A material point solver module for EdelweissFE.",
license="LGPL-2.1",
packages=find_packages(),
include_package_data=True,
author="Matthias Neuner",
author_email="matthias.neuner@uibk.ac.at",
url="https://github.com/EdelweissFE/EdelweissMPM",
cmdclass={"build_ext": build_ext},
ext_modules=cythonize(extensions, compiler_directives=directives, annotate=True, language_level=3),
),
print("Finish!")