-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28297 from Mustapha-hygeos/gatiab_b
first recipe gatiab
- Loading branch information
Showing
1 changed file
with
50 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,50 @@ | ||
{% set name = "gatiab" %} | ||
{% set version = "1.1.0" %} | ||
{% set python_min = "3.9.19" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/gatiab-{{ version }}.tar.gz | ||
sha256: 0fdd77decd846cff54f51542a1e370385ef8fe0936644a6c71ae95f2aed570e4 | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python {{ python_min }} | ||
- setuptools >=42 | ||
- pip | ||
run: | ||
- python >={{ python_min }} | ||
- numpy >=1.26.4 | ||
- xarray >=2024.7.0 | ||
- netcdf4 >=1.7.1 | ||
- scipy >=1.13.1 | ||
- tqdm >=4.66.5 | ||
|
||
test: | ||
imports: | ||
- gatiab | ||
commands: | ||
- pip check | ||
requires: | ||
- python {{ python_min }} | ||
- pip | ||
|
||
about: | ||
home: https://github.com/hygeos/gatiab | ||
summary: Gasous Absorption Transmissions at Instrument Averaged Bands | ||
license: LicenseRef-HYGEOS-gatiab | ||
license_url: https://github.com/hygeos/gatiab/blob/master/LICENSE.txt | ||
license_file: LICENSE.txt | ||
dev_url: https://github.com/hygeos/gatiab | ||
|
||
extra: | ||
recipe-maintainers: | ||
- Mustapha-hygeos |