forked from clawpack/clawpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
261 lines (207 loc) · 8.31 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
"""Clawpack: Python-based Clawpack installer
This installer provides:
* automated clawpack subpackage developer environment setup
* installation of Python modules from clawpack subpackages
in the clawpack.package namespace
Please send an email to claw-dev@googlegroups.com for any general questions
or raise installation-related issues and pull requests to our GitHub repository:
http://github.com/clawpack/clawpack
"""
# some of the functionality of this file is reused from the SciPy setup.py script.
DOCLINES = __doc__.split("\n")
import os
import sys
import subprocess
import time
import io
from contextlib import contextmanager
join = os.path.join
# Specify top-level subpackages in SUBPACKAGES. SUBPACKAGES is a
# list specifying which packages you would like installed. By
# default, the installer will download all of these packages for you.
# You can disable packages by deleting from the dictionary, but you
# will probably need at least pyclaw, visclaw, clawutil, and riemann.
SUBPACKAGES = ['amrclaw', 'clawutil', 'geoclaw', 'classic', 'pyclaw', 'riemann', 'visclaw']
#########################
### BEGIN BOILERPLATE ###
#########################
CLASSIFIERS = """\
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: C
Programming Language :: Python
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
# version must also be changed in clawpack/__init__.py
MAJOR = 5
MINOR = 10
MICRO = 0
TYPE = ''
VERSION = '%d.%d.%d%s' % (MAJOR, MINOR, MICRO, TYPE)
package_path = os.path.join(os.path.dirname(__file__),'clawpack')
version_file_path = os.path.join(package_path,'version.py')
# Return the git revision as a string
def git_version():
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH']:
v = os.environ.get(k)
if v is not None:
env[k] = v
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout = subprocess.PIPE, env=env).communicate()[0]
return out
try:
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
GIT_REVISION = out.strip().decode('ascii')
except OSError:
GIT_REVISION = "Unknown"
return GIT_REVISION
def write_version_py(filename=version_file_path):
old_path = os.getcwd()
local_path = os.path.dirname(os.path.abspath(sys.argv[0]))
src_path = local_path
os.chdir(local_path)
sys.path.insert(0, local_path)
sys.path.insert(0, os.path.join(local_path, 'clawpack')) # to retrieve version
old_path = os.getcwd()
os.chdir(src_path)
sys.path.insert(0, src_path)
cnt = """
# This file is generated by clawpack/setup.py.
version = '%(version)s'
git_revision = '%(git_revision)s'
"""
# Adding the git rev number needs to be done inside
# write_version_py(), otherwise the import of clawpack.version messes
# up the build under Python 3.
if os.path.exists('.git'):
GIT_REVISION = git_version()
elif os.path.exists(version_file_path):
# must be a source distribution, use existing version file
from clawpack.version import git_revision as GIT_REVISION
else:
GIT_REVISION = "Unknown"
with open(filename, 'w') as a:
a.write(cnt % {'version': VERSION,
'git_revision' : GIT_REVISION})
del sys.path[0]
os.chdir(old_path)
#########################
### END BOILERPLATE ###
#########################
def configuration(parent_package='',top_path=None):
from numpy.distutils.misc_util import Configuration
config = Configuration(None, parent_package, top_path)
config.set_options(ignore_setup_xxx_py=True,
assume_default_configuration=True,
delegate_options_to_subpackages=True,
quiet=True)
config.add_subpackage('clawpack')
config.get_version(os.path.join('clawpack','version.py'))
return config
def initialize_submodules(subpackages):
"""Clawpack developer environment setup.
If user has a .git subdirectory, assume they want us to set up submodules for them.
For each package in subpackages:
if the package directory does not exist or is empty, calls::
git submodule init <package>
git submodule update <package>
with timeouts for update, which may be over a fickle remote connection.
"""
if not os.path.exists('.git'):
raise Exception("Developer setup requested but top-level clawpack" + \
" is not a git repository")
for package in subpackages:
if not os.path.exists(package) or not (os.listdir(package)):
subprocess.check_call(['git', 'submodule', 'init', package])
fails = 0
while fails < 20 and subprocess.call(['git', 'submodule', 'update',
package]):
fails = fails+1
print("having difficulties updating submodules," + \
"waiting 5s and trying again [fail %d/20]" % fails)
time.sleep(5)
print("Git development environment initialized for:", package)
@contextmanager
def stdout_redirected(new_stdout='install.log'):
"""This redirects stdout for this processes and those forked from it.
Avoids many pages of warnings generated by f2py being printed to the screen.
This breaks inside conda-build, so we disable it in that situation.
"""
if os.environ.get('CONDA_BUILD')=='1':
try:
yield None
finally:
return
install_log_file_fid = os.open(new_stdout, os.O_WRONLY | os.O_CREAT)
original_stdout_fid = sys.stdout.fileno()
copied_stdout_fid = os.dup(original_stdout_fid)
def _redirect(to_fid):
# Flush and close the Python-level file object, not the C file descriptor
sys.stdout.close()
# Point original_stdout_fid to to_fid
os.dup2(to_fid,original_stdout_fid)
# Create sys.stdout
sys.stdout = io.TextIOWrapper(os.fdopen(original_stdout_fid,'wb'))
try:
_redirect(install_log_file_fid)
yield
_redirect(copied_stdout_fid)
finally:
os.fsync(install_log_file_fid)
os.close(install_log_file_fid)
os.close(copied_stdout_fid)
def setup_package(setup_dict, subpackages):
from numpy.distutils.core import setup
# Rewrite the version file every time we install
write_version_py()
with stdout_redirected(): # Don't print f2py warnings to screen
if os.path.exists('.git'):
initialize_submodules(subpackages)
setup(configuration=configuration, **setup_dict)
if __name__ == '__main__':
setup_dict = dict(
name = 'clawpack',
maintainer = "Clawpack Developers",
maintainer_email = "claw-dev@googlegroups.com",
description = DOCLINES[0],
long_description = "\n".join(DOCLINES[2:]),
url = "http://www.clawpack.org",
download_url = "https://github.com/clawpack/clawpack",
license = 'BSD',
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
platforms = ["Linux", "Solaris", "Mac OS-X", "Unix"],
# explicitly declare packages so setuptools >= 61 does not attempt auto discovery
packages=[]
)
# python setup.py git-dev sets up subpackages
if 'git-dev' in sys.argv:
# not a real install
initialize_submodules(SUBPACKAGES)
# egg_info requests only provide install requirements
# this is how "pip install clawpack" installs numpy correctly.
elif 'egg_info' in sys.argv:
# not a real install
from setuptools import setup
setuptools_dict = dict(
install_requires = ['numpy >= 1.14',
'matplotlib >= 1.0.1',
],
extras_require = {'petclaw': ['petsc4py >= 1.2'],
'euler' : ['scipy >= 0.10.0']},
)
setup_dict.update(setuptools_dict)
setup(**setup_dict)
else:
setup_package(setup_dict, SUBPACKAGES)