mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-06 04:40:02 +02:00
45 lines
772 B
YAML
45 lines
772 B
YAML
source:
|
|
path: ../..
|
|
|
|
{% set version = load_file_regex(load_file = 'VERSION', regex_pattern = '(\d+(?:\.\d+)*(?:[\+\w\.]+))').group(1) %}
|
|
package:
|
|
name: slsdet
|
|
version: {{ version }}
|
|
|
|
build:
|
|
number: 0
|
|
script:
|
|
- unset CMAKE_GENERATOR && {{ PYTHON }} -m pip install . -vv # [not win]
|
|
|
|
requirements:
|
|
build:
|
|
- python {{python}}
|
|
- {{ compiler('c') }}
|
|
- {{ stdlib("c") }}
|
|
- {{ compiler('cxx') }}
|
|
|
|
host:
|
|
- cmake
|
|
- ninja
|
|
- python {{python}}
|
|
- pip
|
|
- scikit-build-core
|
|
- pybind11 >=2.13.0
|
|
- fmt
|
|
- zeromq
|
|
- nlohmann_json
|
|
- catch2
|
|
|
|
run:
|
|
- python {{python}}
|
|
- numpy
|
|
|
|
|
|
test:
|
|
imports:
|
|
- slsdet
|
|
|
|
|
|
about:
|
|
summary: An example project built with pybind11 and scikit-build.
|
|
# license_file: LICENSE |