Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions recipes/mapchete-eo/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{% set name = "mapchete-eo" %}
{% set version = "2025.8.1" %}
{% set python_min = "3.10" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/mapchete_eo-{{ version }}.tar.gz
sha256: 1d40d618775ff9ed23deb2f25a158d02ab6314682f933183e12ddd5f4b32bea2

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

requirements:
host:
- python {{ python_min }}
- hatchling
- pip
run:
- python >={{ python_min }}
- click
- croniter
- lxml
- mapchete >=2025.6.0
- opencv
- pillow
- pydantic
- pystac >=1.12.2
- pystac-client >=0.7.5
- retry
- rtree
- scipy
- tqdm
- xarray

test:
imports:
- mapchete_eo
commands:
- pip check
- mapchete eo --help
requires:
- pip
- python {{ python_min }}

about:
home: https://github.com/mapchete/mapchete-eo
summary: Earth Observation–specific driver extensions for Mapchete
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- ungarj
- Scartography
Loading