forked from modelon-community/PyFMI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
382 lines (328 loc) · 13.6 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2025 Modelon AB
#
# This program 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, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import shutil
import numpy as np
import ctypes.util
import sys
try:
from numpy.distutils.core import setup
have_nd = True
except ImportError:
from setuptools import setup
have_nd = False
from Cython.Distutils import build_ext
from Cython.Build import cythonize
NAME = "PyFMI"
AUTHOR = "Modelon AB"
AUTHOR_EMAIL = ""
VERSION = "3.0-dev"
LICENSE = "LGPL"
URL = "https://github.com/modelon-community/PyFMI"
DOWNLOAD_URL = "https://github.com/modelon-community/PyFMI/releases"
DESCRIPTION = "A package for working with dynamic models compliant with the Functional Mock-Up Interface standard."
PLATFORMS = ["Linux", "Windows", "MacOS X"]
CLASSIFIERS = [ 'Programming Language :: Python',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix']
LONG_DESCRIPTION = """
PyFMI is a package for loading and interacting with Functional Mock-Up
Units (FMUs), which are compiled dynamic models compliant with the
Functional Mock-Up Interface (FMI), see
https://www.fmi-standard.org/ for more information. PyFMI
is based on FMI Library, see https://github.com/modelon-community/fmi-library .
FMI is a standard that enables tool independent exchange of dynamic
models on binary format. Several industrial simulation platforms
supports export of FMUs, including, Impact, Dymola, OpenModelica
and SimulationX, see https://www.fmi-standard.org/tools
for a complete list. PyFMI offers a Python interface for interacting
with FMUs and enables for example loading of FMU models, setting of
model parameters and evaluation of model equations.
Using PyFMI together with the Python
simulation package `Assimulo <http://pypi.python.org/pypi/Assimulo>`_
adds industrial grade simulation capabilities of FMUs to Python.
Requirements:
-------------
- `FMI Library (at least 2.0.1) <https://github.com/modelon-community/fmi-library>`_
- `Python-headers (usually included on Windows, python-dev on Ubuntu)`_
- `Python 3.9 or newer`_
- Python package dependencies are listed in file setup.cfg.
Optional
---------
- `wxPython <http://pypi.python.org/pypi/wxPython>`_ For the Plot GUI.
- `matplotlib <http://pypi.python.org/pypi/matplotlib>`_ For the Plot GUI.
Source Installation (note that assimulo needs to be installed and on PYTHONPATH in order to install pyfmi):
----------------------
python setup.py install --fmil-home=/path/to/FMI_Library/
"""
copy_args = sys.argv[1:]
fmil_home = os.getenv("FMIL_HOME")
if fmil_home: #Check for environment variable that specifies FMIL
incdirs = [os.path.join(fmil_home, 'include')]
# Specify both lib64 and 64, since can it depend on the platform (rockylinux/ubuntu etc)
libdirs = [os.path.join(fmil_home, 'lib64'), os.path.join(fmil_home, 'lib')]
bindirs = [os.path.join(fmil_home, 'bin')]
else:
incdirs = []
libdirs = []
bindirs = []
static = False
debug_flag = False
fmilib_shared = ""
copy_gcc_lib = False
gcc_lib = None
force_32bit = False
no_msvcr = False
with_openmp = False
static_link_gcc = "-static-libgcc"
flag_32bit = "-m32"
extra_c_flags = ""
# Fix path sep
for x in sys.argv[1:]:
if not x.find('--prefix'):
if not have_nd:
raise Exception("Cannot specify --prefix without numpy.distutils")
copy_args[copy_args.index(x)] = x.replace('/',os.sep)
if not x.find('--fmil-home'):
incdirs = [os.path.join(x[12:],'include')]
libdirs = [os.path.join(x[12:],'lib'), os.path.join(x[12:],'lib64')]
bindirs = [os.path.join(x[12:],'bin')]
copy_args.remove(x)
if not x.find('--copy-libgcc'):
if x[14:].upper() == "TRUE":
copy_gcc_lib = True
copy_args.remove(x)
if not x.find('--static'):
static = x[9:]
if x[9:].upper() == "TRUE":
static = True
else:
static = False
copy_args.remove(x)
if not x.find('--force-32bit'):
if x[14:].upper() == "TRUE":
force_32bit = True
copy_args.remove(x)
if not x.find('--no-msvcr'):
if x[11:].upper() == "TRUE":
if not have_nd:
raise Exception("Cannot specify --no-msvcr without numpy.distutils")
no_msvcr = True
copy_args.remove(x)
if not x.find('--extra-c-flags'):
extra_c_flags = x[16:]
copy_args.remove(x)
if not x.find('--with-openmp'):
with_openmp = True
copy_args.remove(x)
if not x.find('--version'):
VERSION = x[10:]
copy_args.remove(x)
if not x.find('--debug'):
if x[8:].upper() == "TRUE":
debug_flag = True
else:
debug_flag = False
copy_args.remove(x)
if not incdirs:
raise Exception(
"FMI Library cannot be found. Please specify its location, " + \
"either using the flag to the setup script '--fmil-home' or" + \
" specify it using the environment variable FMIL_HOME."
)
if 0 != sys.argv[1].find("clean"): #Dont check if we are cleaning!
#Check to see if FMILIB_SHARED exists and if so copy it, otherwise raise exception
if sys.platform.startswith("win"):
dirs_to_search = libdirs + bindirs
while dirs_to_search:
path_to_dir = os.path.abspath(dirs_to_search.pop())
for file_name in os.listdir(path_to_dir):
full_path = os.path.join(path_to_dir, file_name)
if "fmilib_shared" in file_name and not file_name.endswith(".a"):
fmilib_shared = shutil.copy2(full_path, os.path.join(".", "src", "pyfmi"))
dirs_to_search = None
break
if not fmilib_shared:
raise Exception(
f"Could not find shared library 'fmilib_shared' at either location:" + \
f"\n\t{', '.join(dirs_to_search)}")
if copy_gcc_lib:
path_gcc_lib = ctypes.util.find_library("libgcc_s_dw2-1.dll")
if path_gcc_lib is not None:
shutil.copy2(path_gcc_lib,os.path.join(".","src","pyfmi"))
gcc_lib = os.path.join(".","src","pyfmi","libgcc_s_dw2-1.dll")
if no_msvcr:
# prevent the MSVCR* being added to the DLLs passed to the linker
def msvc_runtime_library_mod():
return None
import numpy.distutils
numpy.distutils.misc_util.msvc_runtime_library = msvc_runtime_library_mod
def check_extensions():
ext_list = []
extra_link_flags = []
if static:
extra_link_flags.append(static_link_gcc)
if force_32bit:
extra_link_flags.append(flag_32bit)
#COMMON PYX
"""
ext_list = cythonize([os.path.join("src", "common", "core.pyx")],
include_path=[".","src",os.path.join("src", "common")],
include_dirs=[N.get_include()],pyrex_gdb=debug)
ext_list[-1].include_dirs = [N.get_include(), "src",os.path.join("src", "common"), incdirs]
if debug:
ext_list[-1].extra_compile_args = ["-g", "-fno-strict-aliasing", "-ggdb"]
ext_list[-1].extra_link_args = extra_link_flags
else:
ext_list[-1].extra_compile_args = ["-O2", "-fno-strict-aliasing"]
ext_list[-1].extra_link_args = extra_link_flags
"""
incl_path = [".", "src", os.path.join("src", "pyfmi")]
# FMI PYX
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi_base.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi1.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi2.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi3.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# FMI UTIL
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi_util.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# FMI Extended PYX
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi_extended.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# FMI Coupled PYX
ext_list += cythonize([os.path.join("src", "pyfmi", "fmi_coupled.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# Simulation interface PYX
ext_list += cythonize([os.path.join("src", "pyfmi", "simulation", "assimulo_interface.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# MASTER PYX
compile_time_env = {'WITH_OPENMP': with_openmp}
ext_list += cythonize([os.path.join("src", "pyfmi", "master.pyx")],
include_path = incl_path,
compile_time_env=compile_time_env,
compiler_directives={'language_level' : "3str"})
# UTILITIES
ext_list += cythonize([os.path.join("src", "pyfmi", "util.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
# Test utilities
ext_list += cythonize([os.path.join("src", "pyfmi", "test_util.pyx")],
include_path = incl_path,
compiler_directives={'language_level' : "3str"})
for i in range(len(ext_list)):
ext_list[i].include_dirs = [np.get_include(), "src", os.path.join("src", "pyfmi")] + incdirs
ext_list[i].library_dirs = libdirs
ext_list[i].language = "c"
ext_list[i].libraries = ["fmilib_shared"] if sys.platform.startswith("win") else ["fmilib"] #If windows shared, else static
if debug_flag:
ext_list[i].extra_compile_args = ["-g", "-fno-strict-aliasing", "-ggdb"]
else:
ext_list[i].extra_compile_args = ["-O2", "-fno-strict-aliasing"]
if force_32bit:
ext_list[i].extra_compile_args.append(flag_32bit)
if extra_c_flags:
flags = extra_c_flags.split(' ')
for f in flags:
ext_list[i].extra_compile_args.append(f)
ext_list[i].extra_link_args = extra_link_flags
if with_openmp:
ext_list[i].extra_link_args.append("-fopenmp")
ext_list[i].extra_compile_args.append("-fopenmp")
ext_list[i].cython_directives = {"language_level": 3}
return ext_list
ext_list = check_extensions()
try:
from subprocess import Popen, PIPE
_p = Popen(["svnversion", "."], stdout=PIPE)
revision = _p.communicate()[0].decode('ascii')
except Exception:
revision = "unknown"
version_txt = os.path.join('src', 'pyfmi', 'version.txt')
#If a revision is found, always write it!
if revision != "unknown" and revision!="":
with open(version_txt, 'w') as f:
f.write(VERSION+'\n')
f.write("r"+revision)
else:# If it does not, check if the file exists and if not, create the file!
if not os.path.isfile(version_txt):
with open(version_txt, 'w') as f:
f.write(VERSION+'\n')
f.write("unknown")
try:
shutil.copy2('LICENSE', os.path.join('src', 'pyfmi', 'LICENSE'))
shutil.copy2('CHANGELOG', os.path.join('src', 'pyfmi', 'CHANGELOG'))
except Exception:
pass
extra_package_data = ['*fmilib_shared*'] if sys.platform.startswith("win") else []
extra_package_data += ['libgcc_s_dw2-1.dll'] if copy_gcc_lib else []
setup(name=NAME,
version=VERSION,
license=LICENSE,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
platforms=PLATFORMS,
classifiers=CLASSIFIERS,
ext_modules = ext_list,
package_dir = {'pyfmi': os.path.join('src', 'pyfmi'),
'pyfmi.common': os.path.join('src', 'common')
},
packages=[
'pyfmi',
'pyfmi.simulation',
'pyfmi.examples',
'pyfmi.common',
'pyfmi.common.plotting',
'pyfmi.common.log'
],
package_data = {'pyfmi': [
'examples/files/FMUs/ME1.0/*',
'examples/files/FMUs/CS1.0/*',
'examples/files/FMUs/ME2.0/*',
'examples/files/FMUs/CS2.0/*',
'version.txt',
'LICENSE',
'CHANGELOG',
'util/*'] + extra_package_data
},
script_args=copy_args
)
#Dont forget to delete fmilib_shared
if 0 != sys.argv[1].find("clean"): #Dont check if we are cleaning!
if sys.platform.startswith("win"):
if os.path.exists(fmilib_shared):
os.remove(fmilib_shared)
if gcc_lib and os.path.exists(gcc_lib):
os.remove(gcc_lib)