forked from SciTools/iris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
202 lines (165 loc) · 6.8 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
import contextlib
from distutils.command import build_ext, build_py
from distutils.core import setup, Command
from distutils.sysconfig import get_config_var
from distutils.util import convert_path
import multiprocessing
import os
import sys
import nose
import numpy as np
import setuptools
exclude_dirs = ['compiled_krb']
# Returns the package and all its sub-packages
def find_package_tree(root_path, root_package):
packages = [root_package]
root_count = len(root_path.split('/'))
for (dir_path, dir_names, file_names) in os.walk(convert_path(root_path)):
# Prune dir_names *in-place* to prevent unwanted directory recursion
for dir_name in list(dir_names):
contains_init_file = os.path.isfile(os.path.join(dir_path,
dir_name,
'__init__.py'))
if dir_name in exclude_dirs or not contains_init_file:
dir_names.remove(dir_name)
if dir_names:
prefix = dir_path.split('/')[root_count:]
packages.extend(['.'.join([root_package] + prefix + [dir_name])
for dir_name in dir_names])
return packages
def file_walk_relative(top, remove=''):
"""
Returns a generator of files from the top of the tree, removing
the given prefix from the root/file result.
"""
for root, dirs, files in os.walk(top):
for file in files:
yield os.path.join(root, file).replace(remove, '')
def std_name_cmd(target_dir):
script_path = os.path.join('tools', 'generate_std_names.py')
xml_path = os.path.join('etc', 'cf-standard-name-table.xml')
module_path = os.path.join(target_dir, 'iris', 'std_names.py')
cmd = (sys.executable, script_path, xml_path, module_path)
return cmd
class TestRunner(setuptools.Command):
"""Run the Iris tests under nose and multiprocessor for performance"""
description = "run tests under nose and multiprocessor for performance"
user_options = [('no-data', 'n', 'Override the paths to the data '
'repositories so it appears to the '
'tests that it does not exist.'),
('system-tests', 's', 'Run only the limited subset of '
'system tests.')
]
boolean_options = ['no-data', 'system-tests']
def initialize_options(self):
self.no_data = False
self.system_tests = False
def finalize_options(self):
if self.no_data:
print "Running tests in no-data mode..."
# This enviroment variable will be propagated to all the processes that
# nose.run creates allowing us to simluate the absence of test data
os.environ["override_data_repository"] = "true"
if self.system_tests:
print "Running system tests..."
def run(self):
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
script_path = sys.path[0]
tests = []
lib_dir = os.path.join(script_path, 'lib')
for mod in os.listdir(lib_dir):
path = os.path.join(lib_dir, mod)
if mod != '.svn' and os.path.exists(os.path.join(path, 'tests')):
tests.append('%s.tests' % mod)
if not tests:
raise CommandError('No tests found in %s/*/tests' % lib_dir)
if self.system_tests:
regexp_pat = r'--match=^[Ss]ystem'
else:
regexp_pat = r'--match=^([Tt]est(?![Mm]ixin)|[Ss]ystem)'
n_processors = max(multiprocessing.cpu_count() - 1, 1)
for test in tests:
print
print 'Running test discovery on %s with %s processors.' % (test, n_processors)
# run the tests at module level i.e. my_module.tests
# - test must start with test/Test and must not contain the word Mixin.
nose.run(argv=['', test, '--processes=%s' % n_processors,
'--verbosity=2', regexp_pat,
'--process-timeout=250'])
class MakeStdNames(Command):
"""
Generates the CF standard name module containing mappings from
CF standard name to associated metadata.
"""
description = "generate CF standard name module"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
cmd = std_name_cmd('lib')
self.spawn(cmd)
class BuildPyWithExtras(build_py.build_py):
"""
Adds the creation of the CF standard names module and compilation
of the pyke rules to the standard "build_py" command.
"""
@contextlib.contextmanager
def temporary_path(self):
"""
Context manager that adds and subsequently removes the build
directory to the beginning of the module search path.
"""
sys.path.insert(0, self.build_lib)
try:
yield
finally:
del sys.path[0]
def run(self):
# Run the main build command first to make sure all the target
# directories are in place.
build_py.build_py.run(self)
# Now build the std_names module.
cmd = std_name_cmd(self.build_lib)
self.spawn(cmd)
# Compile the pyke rules
with self.temporary_path():
# Compile the pyke rules
from pyke import knowledge_engine
import iris.fileformats._pyke_rules
e = knowledge_engine.engine(iris.fileformats._pyke_rules)
setup(
name='Iris',
version='0.9-dev',
url='http://scitools.github.com/iris',
author='UK Met Office',
packages=find_package_tree('lib/iris', 'iris'),
package_dir={'': 'lib'},
package_data={
'iris': list(file_walk_relative('lib/iris/etc', remove='lib/iris/')) + \
list(file_walk_relative('lib/iris/tests/results',
remove='lib/iris/')) + \
['fileformats/_pyke_rules/*.k?b'] + \
['tests/stock*.npz']
},
data_files=[('iris', ['CHANGES', 'COPYING', 'COPYING.LESSER'])],
tests_require=['nose'],
features={
'unpack': setuptools.Feature(
"use of UKMO unpack library",
standard=False,
ext_modules=[
setuptools.Extension(
'iris.fileformats.pp_packing',
['src/iris/fileformats/pp_packing/pp_packing.c'],
libraries=['mo_unpack'],
include_dirs=[np.get_include()]
)
]
)
},
cmdclass={'test': TestRunner, 'build_py': BuildPyWithExtras,
'std_names': MakeStdNames},
)