2023-10-24 18:46:43 +08:00
|
|
|
{% set name = "gdptools" %}
|
2026-08-03 01:48:47 +08:00
|
|
|
{% set version = "0.2.18" %}
|
2026-08-18 22:14:47 +08:00
|
|
|
{% set python_min = "3.10" %}
|
2023-10-24 18:46:43 +08:00
|
|
|
|
|
|
|
|
package:
|
|
|
|
|
name: {{ name|lower }}
|
|
|
|
|
version: {{ version }}
|
|
|
|
|
|
|
|
|
|
source:
|
2026-04-25 16:28:46 +08:00
|
|
|
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/gdptools-{{ version }}.tar.gz
|
2026-08-03 01:48:47 +08:00
|
|
|
sha256: f6d28869342447fee02fceebf48847367a1adfe32b74a61095a45b76656f98d6
|
2023-10-24 18:46:43 +08:00
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
entry_points:
|
|
|
|
|
- gdptools = gdptools.__main__:main
|
|
|
|
|
noarch: python
|
2026-08-18 22:14:47 +08:00
|
|
|
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
|
2026-02-10 03:21:26 +08:00
|
|
|
number: 0
|
2023-10-24 18:46:43 +08:00
|
|
|
|
|
|
|
|
requirements:
|
|
|
|
|
host:
|
2026-05-20 14:24:06 +08:00
|
|
|
- python {{ python_min }}
|
2023-10-24 18:46:43 +08:00
|
|
|
- pip
|
2025-05-29 15:46:45 +08:00
|
|
|
- poetry-core >=1.0.0
|
2023-10-24 18:46:43 +08:00
|
|
|
run:
|
2026-05-20 14:24:06 +08:00
|
|
|
- python >={{ python_min }}
|
2025-12-29 09:08:06 +08:00
|
|
|
- bottleneck >=1.3.3
|
2024-04-27 16:18:04 +08:00
|
|
|
- dask >=2022.0.0
|
2026-08-18 22:14:47 +08:00
|
|
|
- dask-core >2024.8.0
|
|
|
|
|
- dask-geopandas >0.4.1
|
|
|
|
|
- fastparquet >=2024.2.0
|
|
|
|
|
- geopandas >=0.13.0
|
|
|
|
|
- geoviews >=1.12.0,<2.0.0
|
2025-12-09 23:18:46 +08:00
|
|
|
- joblib >=1.4.0
|
2026-08-18 22:14:47 +08:00
|
|
|
- metpy >=1.2.0
|
|
|
|
|
- netcdf4 >=1.5.8
|
|
|
|
|
- numpy >2.0
|
|
|
|
|
- pandas >=2.0.0
|
|
|
|
|
- pyarrow <18.1.1
|
|
|
|
|
- pydantic >=1.10.5,<2.0.0
|
|
|
|
|
- pydap >=3.2.2,<4.0.0
|
|
|
|
|
- pyproj >=3.3.0
|
|
|
|
|
- pystac >=1.10.0,<2.0.0
|
|
|
|
|
- rasterio >=1.2.9,<1.5.0
|
2025-12-09 23:18:46 +08:00
|
|
|
- rioxarray >=0.13.0
|
2026-08-18 22:14:47 +08:00
|
|
|
- s3fs >=2025.2.0,<2026.0.0
|
|
|
|
|
- scipy >=1.13.0,<2.0.0
|
|
|
|
|
- shapely >=2.0
|
|
|
|
|
- statsmodels >=0.14.0,<0.15.0
|
|
|
|
|
- tqdm >=4.66.2,<5.0.0
|
|
|
|
|
- urllib3 >=1.26.0,<2.0.0
|
|
|
|
|
- xarray 2024.7.0
|
|
|
|
|
- xpystac >=0.1.3,<0.2.0
|
|
|
|
|
- zarr >=2.12.0
|
|
|
|
|
# - attrs >=20.3,<22
|
|
|
|
|
# - bump2version >=1.0.1,<2.0.0
|
|
|
|
|
# - certifi <2023.7.22
|
|
|
|
|
# - pygeos >=0.14.0,<0.15.0
|
2024-03-08 05:08:04 +08:00
|
|
|
# xarray[io]
|
|
|
|
|
- cfgrib
|
2026-08-18 22:14:47 +08:00
|
|
|
- cftime
|
|
|
|
|
- fsspec
|
|
|
|
|
- h5netcdf
|
2025-05-18 10:08:45 +08:00
|
|
|
# - pooch
|
2024-03-08 05:08:04 +08:00
|
|
|
# xarray[accel]
|
2025-05-18 10:08:45 +08:00
|
|
|
# - flox
|
2023-10-24 18:46:43 +08:00
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
imports:
|
|
|
|
|
- gdptools
|
|
|
|
|
commands:
|
2026-08-18 22:14:47 +08:00
|
|
|
- pip check
|
2023-10-24 18:46:43 +08:00
|
|
|
- gdptools --help
|
2024-01-15 15:53:24 +08:00
|
|
|
requires:
|
2026-05-20 14:24:06 +08:00
|
|
|
- python {{ python_min }}
|
2024-01-15 15:53:24 +08:00
|
|
|
- pip
|
2023-10-24 18:46:43 +08:00
|
|
|
|
|
|
|
|
about:
|
|
|
|
|
home: https://code.usgs.gov/wma/nhgf/toolsteam/gdptools
|
|
|
|
|
summary: Gdptools
|
|
|
|
|
license: Unlicense
|
|
|
|
|
license_file:
|
|
|
|
|
- LICENSE.md
|
|
|
|
|
|
|
|
|
|
extra:
|
|
|
|
|
recipe-maintainers:
|
2023-11-03 16:48:43 +08:00
|
|
|
- rmcd-mscb
|
2023-10-24 18:46:43 +08:00
|
|
|
- ocefpaf
|