-
-
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 #22370 from dbekaert/main
Adding ARIA-tools
- Loading branch information
Showing
1 changed file
with
94 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,94 @@ | ||
{% set name = "ARIA-tools" %} | ||
{% set version = "1.1.5" %} | ||
|
||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/aria-tools/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: c544fee1c539f38e23897d27332a6af0f45d48874e651a096993dbd311cbbf48 | ||
|
||
build: | ||
script: | ||
- export SETUPTOOLS_SCM_PRETEND_VERSION={{ version }} | ||
- {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
skip: true # [py<38 or win] | ||
# entry_points: | ||
# - ariaExtract.py = tools/bin/ariaExtract.py:main | ||
# - ariaDownload.py = tools/bin/ariaDownload.py:main | ||
# - ariaTSsetup.py = tools/bin/ariaTSsetup.py:main | ||
# - ariaPlot = tools/bin/ariaPlot.py:main | ||
# - ariaMisclosure.py = tools/bin/ariaMisclosure.py:main | ||
# - ariaAOIassist.py = tools/bin/ariaAOIassist.py:main | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ compiler('cxx') }} | ||
- cmake | ||
host: | ||
- python | ||
- pip | ||
- pybind11 >=2.5.0 | ||
- setuptools >61.0 | ||
- setuptools_scm >6.2 | ||
- python-build | ||
- numpy | ||
- cython | ||
run: | ||
- python | ||
- asf_search | ||
- cartopy | ||
- gdal >=3.4.1 | ||
- h5py | ||
- joblib | ||
- matplotlib-base | ||
- netcdf4 | ||
- pandas | ||
- xarray | ||
- rasterio | ||
- rioxarray | ||
- pip | ||
- pyproj | ||
- requests | ||
- scipy <1.10 | ||
- mintpy | ||
- shapely | ||
|
||
test: | ||
imports: | ||
- ARIAtools | ||
requires: | ||
- pip | ||
commands: | ||
- pip check | ||
# - ariaExtract.py -h | ||
# - ariaDownload.py -h | ||
# - ariaTSsetup.py -h | ||
# - ariaPlot -h | ||
# - ariaMisclosure.py -h | ||
# - ariaAOIassist.py -h | ||
|
||
about: | ||
home: https://github.com/aria-tools/ARIA-tools | ||
summary: Advanced Rapid Imaging and Analysis Product Toolkit | ||
description: | | ||
ARIA-tools is an open-source package in Python which contains tools to | ||
manipulate ARIA standard InSAR products. Its development was funded under | ||
the NASA Sea-level Change Team (NSLCT) program and the Earth Surface | ||
and Interior (ESI) program. U.S. Government sponsorship acknowledged. | ||
license: Apache-2.0 | ||
license_family: Apache | ||
license_file: LICENSE | ||
doc_url: https://github.com/dbekaert/RAiDER-docs | ||
dev_url: https://github.com/aria-tools/ARIA-tools-docs | ||
|
||
extra: | ||
recipe-maintainers: | ||
- sssangha | ||
- cmarshak | ||
- jhkennedy | ||
- dbekaert |