forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
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 conda-forge#27725 from lyehe/lazyimread
Add lazyimread recipe
- Loading branch information
Showing
1 changed file
with
54 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,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 |