diff --git a/recipes/pyrtools/meta.yaml b/recipes/pyrtools/meta.yaml new file mode 100644 index 0000000000000..21e863556c7ea --- /dev/null +++ b/recipes/pyrtools/meta.yaml @@ -0,0 +1,50 @@ +{% set name = "pyrtools" %} +{% set version = "1.0.5" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyrtools-{{ version }}.tar.gz + sha256: d4465ef5624d5fb4cfbd86ed2fb2fd866d4f974211da232452260ffe45425609 + +build: + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + build: + - {{ compiler('c') }} + - {{ stdlib('c') }} + host: + - python + - setuptools + - wheel + - setuptools-scm + - pip + run: + - python + - numpy >=1.1 + - scipy >=0.18 + - matplotlib-base >=1.5 + - tqdm >=4.29 + - requests >=2.21 + +test: + imports: + - pyrtools + commands: + - pip check + requires: + - pip + +about: + summary: Python tools for multi-scale image processing, including Laplacian pyramids, Wavelets, and Steerable Pyramids. + home: https://github.com/LabForComputationalVision/pyrtools/ + license: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - billbrod