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

add pyeddytracker #28290

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
53 changes: 53 additions & 0 deletions recipes/pyeddytracker/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set name = "pyeddytracker" %}
{% set version = "3.6.1" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pyEddyTracker-{{ version }}.tar.gz
sha256: 99e02202c21a6f44fdbb92a5ff0ecdd1dd28b94e3a3de70446578d09d010cf9e

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

requirements:
host:
- python {{ python_min }}
- setuptools
- pip
run:
- python >={{ python_min }}
- matplotlib-base
- opencv
- pint ==0.18
- polygon3
- pyyaml
- requests
- scipy
- zarr
- netcdf4 <1.6
- numpy <1.23
- numba <0.56

test:
imports:
- py_eddy_tracker
commands:
- pip check
requires:
- python {{ python_min }}
- pip

about:
home: https://github.com/AntSimi/py-eddy-tracker
summary: Py-Eddy-Tracker libraries
license: GPL-3.0-only
license_file: COPYING

extra:
recipe-maintainers:
- ocefpaf
Loading