-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
meta.yaml
54 lines (47 loc) · 1.01 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
{% set name = "pybind11-numpy-example" %}
{% set version = "1.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pybind11_numpy_example-{{ version }}.tar.gz
sha256: 7cd0ec6b8dbbcba29f5df14cc1c8c80d7cd8268b893298059559bd19508acf0d
build:
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
build:
- {{ compiler('cxx') }}
- {{ stdlib('c') }}
- cmake
- make
- ninja
host:
- numpy
- pip
- pybind11
- python
- scikit-build-core
run:
- python
test:
imports:
- pybind11_numpy_example
requires:
- pip
- pytest
source_files:
- tests
commands:
- pip check
- pytest -v
about:
home: https://github.com/ssciwr/pybind11-numpy-example
summary: An example of using numpy with pybind11
license: MIT
license_family: MIT
license_file: LICENSE.md
doc_url: https://pybind11-numpy-example.readthedocs.io/
extra:
recipe-maintainers:
- lkeegan