Skip to content

Commit

Permalink
Merge pull request conda-forge#22857 from TomNicholas/cubed-package
Browse files Browse the repository at this point in the history
Add recipe for Cubed package
  • Loading branch information
ocefpaf authored May 19, 2023
2 parents 7e7ddba + 9549fe6 commit 3a75f74
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions recipes/cubed/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{% set name = "cubed" %}
{% set version = "0.6.3" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 4f6716df51674634156224e249bdae0de7e8e0cd999a13c0faf8b00c68251e46

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

requirements:
host:
- pip
- python >=3.8
- setuptools >=42
- setuptools_scm >=3.4
- toml
run:
- aiostream
- fsspec
- mypy_extensions # for rechunker
- networkx <2.8.3
- numpy >=1.22
- tenacity
- toolz
- zarr
- python >=3.8

test:
imports:
- cubed
commands:
- pip check
requires:
- pip

about:
home: https://github.com/tomwhite/cubed
license: Apache-2.0
license_family: APACHE
license_file: LICENSE
summary: Bounded-memory serverless distributed N-dimensional array processing
doc_url: tomwhite.github.io/cubed
dev_url: https://github.com/tomwhite/cubed

extra:
recipe-maintainers:
- TomNicholas
- tomwhite

0 comments on commit 3a75f74

Please sign in to comment.