-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
meta.yaml
70 lines (63 loc) · 1.62 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{% set name = "numcodecs" %}
{% set version = "0.12.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 05d91a433733e7eef268d7e80ec226a0232da244289614a8f3826901aec1098e
build:
number: 1
script_env:
- DISABLE_NUMCODECS_AVX2=""
- DISABLE_NUMCODECS_SSE2="" # [not x86]
script:
- export CFLAGS="${CFLAGS} -pthread" # [aarch64 or ppc64le]
- {{ PYTHON }} -m pip install . -vv
requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- cython # [build_platform != target_platform]
- {{ stdlib('c') }}
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- python
- pip
- cython
- setuptools >=64
- setuptools_scm >=6.2
- tomli
- py-cpuinfo
run:
- python
- numpy >=1.7
- msgpack-python
test:
requires:
- coverage
- flake8
- pytest
- pytest-cov
- pip
- importlib_metadata
imports:
- numcodecs
- numcodecs.blosc
- numcodecs.lz4
- numcodecs.zstd
commands:
- pip check
- pytest -v --pyargs numcodecs
about:
home: https://github.com/zarr-developers/numcodecs
license: MIT
license_file: LICENSE.txt
summary: A Python package providing buffer compression and transformation codecs for use in data storage and communication applications.
extra:
recipe-maintainers:
- alimanfoo
- jakirkham
- joshmoore
- jrbourbeau