-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
118 lines (98 loc) · 3.96 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
# 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, 5):
print("Python 3.5 or higher required, please upgrade.")
sys.exit(1)
on_rtd = os.environ.get('READTHEDOCS') == 'True'
VERSION = "2019.2.0.dev0"
URL = ""
if on_rtd:
REQUIREMENTS = []
else:
REQUIREMENTS = [
"numpy",
"fenics-ffc>=2019.2.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
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
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,
'-DPYTHON_EXECUTABLE=' + sys.executable]
cfg = 'Debug' if self.debug else 'Release'
build_args = ['--config', cfg]
if platform.system() == "Windows":
cmake_args += ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{}={}'.format(cfg.upper(), extdir)]
if sys.maxsize > 2**32:
cmake_args += ['-A', 'x64']
build_args += ['--', '/m']
else:
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
if "CIRCLECI" in os.environ:
build_args += ['--', '-j2']
else:
num_build_threads = max(1, multiprocessing.cpu_count() - 1)
build_args += ['--', '-j' + str(num_build_threads)]
env = os.environ.copy()
env['CXXFLAGS'] = '{} -DVERSION_INFO=\\"{}\\"'.format(env.get('CXXFLAGS', ''),
self.distribution.get_version())
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="fenics_error_estimation",
description="Implicit and a posteriori error estimates in FEniCS",
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=["fenics_error_estimation"],
package_dir={"fenics_error_estimation": "fenics_error_estimation"},
ext_modules=[CMakeExtension("fenics_error_estimation.cpp", sourcedir="./fenics_error_estimation/cpp/")],
cmdclass=dict(build_ext=CMakeBuild),
platforms=["Linux", "Solaris", "Mac OS-X", "Unix"],
install_requires=REQUIREMENTS,
zip_safe=False)
if __name__ == "__main__":
run_install()