Skip to content

Commit

Permalink
Merge pull request conda-forge#27725 from lyehe/lazyimread
Browse files Browse the repository at this point in the history
Add lazyimread recipe
  • Loading branch information
synapticarbors authored Sep 30, 2024
2 parents 5c3c320 + 5695cdf commit 2313930
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions recipes/lazyimread/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "lazyimread" %}
{% set version = "0.1.3" %}

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

source:
url: https://github.com/lyehe/lazyimread/archive/v{{ version }}.tar.gz
sha256: 631254519efd938e24a49aeb469d0b83060ebcdcbbbc940882f2586f10a92337

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

requirements:
host:
- python >=3.10
- pip
- hatchling
run:
- python >=3.10
- numpy
- opencv
- tifffile
- h5py
- zarr
- xmltodict
- pyyaml

test:
imports:
- lazyimread
commands:
- pip check
requires:
- pip

about:
home: https://github.com/lyehe/lazyimread
summary: A lazy image reading library for various file formats
description: |
Lazyimread is a Python library that simplifies working with large,
multi-dimensional image datasets. It can handle importing of various
image file formats such as TIFF, HDF5, Zarr, image sequences, and
video files without writing boilerplate code for each format.
license: CC0-1.0
license_family: CC
license_file: LICENSE

extra:
recipe-maintainers:
- lyehe

0 comments on commit 2313930

Please sign in to comment.