forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e44ad9
commit 90cfa1a
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |