-
Notifications
You must be signed in to change notification settings - Fork 3
/
meta.yaml
55 lines (47 loc) · 1009 Bytes
/
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
{% set data = load_setup_py_data() %}
package:
name: climtas
version: {{ data.get('version') }}
source:
path: .
build:
script: "{{ PYTHON }} -m pip install . --no-deps"
noarch: python
number: {{ GIT_DESCRIBE_NUMBER }}
requirements:
host:
- python >=3.8
- pip
run:
- python >=3.8
- dask >=2015.5
- netcdf4
- pandas
- scipy
- tqdm
- xarray
- typing_extensions
- iris
- cfunits
- mule
- sparse
- python-graphviz
test:
imports:
- climtas
requires:
- pytest
- coverage
- cdo
- esmf
- hdf5
- nco
files:
- setup.cfg
- test
- README.rst
- doc
script_env:
- TEST_OUTPUT
commands:
- COVERAGE_FILE=${TEST_OUTPUT:-.}/coverage coverage run --source climtas -m pytest ./test --pyargs climtas --junit-xml=${TEST_OUTPUT:-.}/pytest/junit.xml