forked from ESMValGroup/ESMValCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
72 lines (63 loc) · 1.9 KB
/
meta.yaml
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
# Conda build recipe
---
# Build commmand:
# conda build . -c conda-forge -c esmvalgroup
# Package version number
{% set version = "2.0.0b0" %}
package:
name: esmvalcore
version: {{ version }}
source:
# Use these two lines to build a release:
# git_rev: v{{ version }}
# git_url: https://github.com/ESMValGroup/ESMValCore.git
# Use this line instead of the above to test building without a release:
path: .
build:
# Increment the build number when building a new conda package of the same
# esmvalcore version, reset to 0 when building a new version.
number: 0
script: |
python setup.py install --single-version-externally-managed --record=/tmp/record.txt
requirements:
build:
- git
- python {{ python }}
# Normally installed via pip:
- pytest-runner
- setuptools_scm
run:
# esmvaltool
- python
- libunwind # specifically for Python3.7+
- graphviz
- iris>=2.2
- matplotlib<3,>=2 # required by iris
- python-stratify
# Normally installed via pip:
- cf-units
- cython # required by cf-units but not automatically installed
- esmpy
- nc-time-axis
- netCDF4
- numba
- numpy
- prov
- psutil
- pydot
- pyyaml
- yamale # in esmvalgroup and birdhouse channel
test:
# TODO: add unit tests? This seems to require installing the tests
imports:
- esmvalcore
- esmvalcore.cmor
- esmvalcore.preprocessor
commands:
- esmvaltool -h
about:
home: https://www.esmvaltool.org
license: Apache License, Version 2.0
license_file: LICENSE
summary: "ESMValTool Core: core functionalities for the ESMValTool, a community diagnostic and performance metrics tool for routine evaluation of Earth system models in CMIP."
description: "ESMValTool Core: core functionalities for the ESMValTool, a community diagnostic and performance metrics tool for routine evaluation of Earth system models in CMIP."