Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds pyrtools #25506

Merged
merged 11 commits into from
Jul 20, 2024
50 changes: 50 additions & 0 deletions recipes/pyrtools/meta.yaml
Original file line number Diff line number Diff line change
@@ -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