-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
103 lines (83 loc) · 3.21 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
# Copyright 2019-2020, Jack S. Hale, Raphaël Bulle
# SPDX-License-Identifier: LGPL-3.0-or-later
import os
import sys
import platform
import subprocess
import multiprocessing
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
if sys.version_info < (3, 7):
print("Python 3.7 or higher required, please upgrade.")
sys.exit(1)
VERSION = "0.3.0.dev0"
URL = ""
REQUIREMENTS = [
"numpy",
"scipy",
"fenics-dolfinx>=0.3.0.dev0",
]
AUTHORS = """\
Raphael Bulle
Jack S. Hale
"""
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Mathematics
"""
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):
try:
subprocess.check_output(['cmake', '--version'])
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):
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir]
cfg = 'Debug' if self.debug else 'Release'
build_args = ['--config', cfg]
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
env = os.environ.copy()
import pybind11
env['pybind11_DIR'] = pybind11.get_cmake_dir()
env['CXXFLAGS'] = '{}'.format(env.get('CXXFLAGS', ''))
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
subprocess.check_call(['cmake', ext.sourcedir] + cmake_args, cwd=self.build_temp, env=env)
subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=self.build_temp)
def run_install():
setup(name="fenicsx_error_estimation",
description="Implicit and a posteriori error estimates in FEniCSx",
version=VERSION,
author=AUTHORS,
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
license="LGPL version 3 or later",
author_email="[email protected]",
maintainer_email="[email protected]",
url=URL,
packages=["fenicsx_error_estimation"],
package_dir={"fenicsx_error_estimation": "fenicsx_error_estimation"},
ext_modules=[CMakeExtension("fenicsx_error_estimation.cpp", sourcedir="./fenicsx_error_estimation/cpp/")],
cmdclass=dict(build_ext=CMakeBuild),
platforms=["Linux", "Mac OS-X", "Unix"],
install_requires=REQUIREMENTS,
zip_safe=False)
if __name__ == "__main__":
run_install()