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

added xarray-behave #28381

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions recipes/xarray-behave/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" -m pip install xarray-behave -vv --no-dependencies
if errorlevel 1 exit 1
1 change: 1 addition & 0 deletions recipes/xarray-behave/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip install xarray-behave -vv --no-dependencies
72 changes: 72 additions & 0 deletions recipes/xarray-behave/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{% set python_min = "3.10" %}

package:
name: xarray-behave
version: 0.36.0

source:
url: https://files.pythonhosted.org/packages/91/42/b4416c675867e93ecf227c02bcb16aa0bfb358cf429bdf2f3fddef0c9a61/xarray_behave-0.36.0.tar.gz
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use grayskull to generate Python recipes. Grayskull make it easier for us to review.

See https://github.com/conda-forge/staged-recipes?tab=readme-ov-file#grayskull---recipe-generator-for-python-packages-on-pypi for more information.

sha256: 565439d90209b31b80ae69fcb52249e8846052247e013fba7dfee34fb7416934

build:
number: 0
noarch: python

requirements:
host:
- python {{ python_min }}
- pip
- setuptools
- flit_core >=3.2
run:
- python >={{ python_min }}
- defopt =6.3
- rich
- flammkuchen
- h5py
- pyyaml
- zarr
- numba
- xarray
- dask
- librosa >0.8
- pysoundfile
- python-sounddevice
- matplotlib-base
- colorcet
- pandas
- scipy >=1.9
- scikit-image
- scikit-learn
- peakutils
- pyside6
- pyqtgraph >0.12
- qtpy
- superqt
- ffmpeg
- pyvideoreader

test:
requires:
- python {{ python_min }}
imports:
- xarray_behave
- xarray_behave.event_utils
- xarray_behave.metrics
- xarray_behave.loaders
- xarray_behave.annot
- xarray_behave.gui
- xarray_behave.gui.audio_player
- xarray_behave.io

about:
home: "http://github.com/janclemenslab/xarray-behave"
license: Apache-2.0
license_file: LICENSE
summary: "xarray behave"
doc_url: "http://github.com/janclemenslab/xarray-behave"
dev_url: "http://github.com/janclemenslab/xarray-behave"

extra:
recipe-maintainers:
- postpop
Loading