Skip to content

Commit

Permalink
add meta.yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
gantian127 committed Dec 9, 2022
1 parent 7e44ad9 commit 90cfa1a
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions recipes/bmi_nwis/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{% set name = "bmi_era5" %}
{% set version = "0.1.4" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/gantian127/{{ name }}/archive/v{{ version }}.tar.gz
sha256: 559b581997492ccfb6050033d2dde8897b2750b80f30e26503a897254b9101aa


build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"


requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- bmipy
- netcdf4
- numpy
- pyymal
- requests
- xarray
- cdsapi

test:
imports:
- bmi_era5

about:
home: https://github.com/gantian127/bmi_era5
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: |
A Python library as a Basic Model Interface implementation for the ERA5 data
description: |
bmi_era5 package is an implementation of the Basic Model Interface (BMI) for
the ERA5 dataset. This package uses the CDS API to download the ERA5 dataset
and wraps the dataset with BMI for data control and query
(currently support 3 dimensional ERA5 dataset).
This package is not implemented for people to use but is the key element to
convert the ERA5 dataset into a data component (pymt_era5) for the PyMT modeling
framework developed by Community Surface Dynamics Modeling System (CSDMS).
doc_url: https://bmi-era5.readthedocs.io/
dev_url: https://github.com/gantian127/bmi_era5

extra:
recipe-maintainers:
- gantian127

0 comments on commit 90cfa1a

Please sign in to comment.