forked from ESMValGroup/ESMValTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·246 lines (214 loc) · 7.05 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
#!/usr/bin/env python
"""ESMValTool installation script."""
import os
import re
import sys
from pathlib import Path
from setuptools import Command, setup
from esmvaltool import __version__
PACKAGES = [
'esmvaltool',
]
REQUIREMENTS = {
# Installation script (this file) dependencies
'setup': [
'pytest-runner',
'setuptools_scm',
],
# Installation dependencies
# Use with pip install . to install from source
'install': [
'cartopy',
'cdo',
'cf-units',
'cython',
'jinja2',
'eofs',
'esmvalcore>=2.0.0b2,<2.1',
'fiona',
'matplotlib<3',
'nc-time-axis', # needed by iris.plot
'netCDF4',
'numpy',
'pandas',
'pyyaml',
'scitools-iris>=2.2',
'scikit-learn',
'shapely',
'stratify',
'xarray>=0.12',
'xlsxwriter',
],
# Test dependencies
# Execute 'python setup.py test' to run tests
'test': [
'easytest',
'mock',
'nose',
'pycodestyle',
'pytest>=3.9',
'pytest-cov',
'pytest-env',
'pytest-flake8',
'pytest-html',
'pytest-metadata>=1.5.1',
],
# Development dependencies
# Use pip install -e .[develop] to install in development mode
'develop': [
'isort',
'prospector[with_pyroma]!=1.1.6.3,!=1.1.6.4',
'sphinx',
'sphinx_rtd_theme',
'vmprof',
'yamllint',
'yapf',
],
}
def read_authors(citation_file):
"""Read the list of authors from .cff file."""
authors = re.findall(
r'family-names: (.*)$\s*given-names: (.*)',
Path(citation_file).read_text(),
re.MULTILINE,
)
return ', '.join(' '.join(author[::-1]) for author in authors)
def discover_python_files(paths, ignore):
"""Discover Python files."""
def _ignore(path):
"""Return True if `path` should be ignored, False otherwise."""
return any(re.match(pattern, path) for pattern in ignore)
for path in sorted(set(paths)):
for root, _, files in os.walk(path):
if _ignore(path):
continue
for filename in files:
filename = os.path.join(root, filename)
if (filename.lower().endswith('.py')
and not _ignore(filename)):
yield filename
class CustomCommand(Command):
"""Custom Command class."""
def install_deps_temp(self):
"""Try to temporarily install packages needed to run the command."""
if self.distribution.install_requires:
self.distribution.fetch_build_eggs(
self.distribution.install_requires)
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
class RunTests(CustomCommand):
"""Class to run tests and generate reports."""
user_options = [('installation', None,
'Run tests that require installation.')]
def initialize_options(self):
"""Initialize custom options."""
self.installation = False
def finalize_options(self):
"""Do nothing."""
def run(self):
"""Run tests and generate a coverage report."""
self.install_deps_temp()
import pytest
report_dir = 'test-reports'
args = [
'tests',
'esmvaltool', # for doctests
'--doctest-modules',
'--cov=esmvaltool',
'--cov-report=term',
'--cov-report=html:{}/coverage_html'.format(report_dir),
'--cov-report=xml:{}/coverage.xml'.format(report_dir),
'--junit-xml={}/report.xml'.format(report_dir),
'--html={}/report.html'.format(report_dir),
]
if self.installation:
args.append('--installation')
errno = pytest.main(args)
sys.exit(errno)
class RunLinter(CustomCommand):
"""Class to run a linter and generate reports."""
user_options = []
def initialize_options(self):
"""Do nothing."""
def finalize_options(self):
"""Do nothing."""
def run(self):
"""Run prospector and generate a report."""
check_paths = PACKAGES + [
'setup.py',
'tests',
'util',
]
ignore = [
'doc/',
]
# try to install missing dependencies and import prospector
try:
from prospector.run import main
except ImportError:
# try to install and then import
self.distribution.fetch_build_eggs(['prospector[with_pyroma]'])
from prospector.run import main
self.install_deps_temp()
# run linter
# change working directory to package root
package_root = os.path.abspath(os.path.dirname(__file__))
os.chdir(package_root)
# write command line
files = discover_python_files(check_paths, ignore)
sys.argv = ['prospector']
sys.argv.extend(files)
# run prospector
errno = main()
sys.exit(errno)
setup(
name='ESMValTool',
version=__version__,
author=read_authors('CITATION.cff'),
description='Earth System Models eValuation Tool',
long_description=Path('README.md').read_text(),
url='https://www.esmvaltool.org',
download_url='https://github.com/ESMValGroup/ESMValTool',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta', 'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English', 'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Physics'
],
packages=PACKAGES,
# Include all version controlled files
include_package_data=True,
setup_requires=REQUIREMENTS['setup'],
install_requires=REQUIREMENTS['install'],
tests_require=REQUIREMENTS['test'],
extras_require={
'develop': (set(REQUIREMENTS['develop'] + REQUIREMENTS['test']) -
{'pycodestyle'}),
},
entry_points={
'console_scripts': [
'cmorize_obs = esmvaltool.cmorizers.obs.cmorize_obs:main',
'mip_convert_setup = '
'esmvaltool.cmorizers.mip_convert.esmvt_mipconv_setup:main',
'nclcodestyle = esmvaltool.utils.nclcodestyle.nclcodestyle:_main',
'showcolortables = '
'esmvaltool.utils.color_tables.show_color_tables:run',
'test_recipe = '
'esmvaltool.utils.testing.recipe_settings.install_expand_run:main'
],
},
cmdclass={
'test': RunTests,
'lint': RunLinter,
},
zip_safe=False,
)