mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
conda build
This commit is contained in:
2
python/conda-recepie/bld.bat
Normal file
2
python/conda-recepie/bld.bat
Normal file
@ -0,0 +1,2 @@
|
||||
"%PYTHON%" setup.py install
|
||||
if errorlevel 1 exit 1
|
2
python/conda-recepie/build.sh
Normal file
2
python/conda-recepie/build.sh
Normal file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
${PYTHON} setup.py install # Python command to install the script
|
4
python/conda-recepie/conda_build_config.yaml
Normal file
4
python/conda-recepie/conda_build_config.yaml
Normal file
@ -0,0 +1,4 @@
|
||||
python:
|
||||
- 3.5
|
||||
- 3.6
|
||||
- 3.7
|
4
python/conda-recepie/conda_env.txt
Normal file
4
python/conda-recepie/conda_env.txt
Normal file
@ -0,0 +1,4 @@
|
||||
# This file may be used to create an environment using:
|
||||
# $ conda create --name <env> --file <this file>
|
||||
# platform: osx-64
|
||||
|
43
python/conda-recepie/meta.yaml
Normal file
43
python/conda-recepie/meta.yaml
Normal file
@ -0,0 +1,43 @@
|
||||
package:
|
||||
name: sls_detector
|
||||
version: refactor
|
||||
|
||||
build:
|
||||
number: 0
|
||||
|
||||
source:
|
||||
path: ..
|
||||
|
||||
requirements:
|
||||
build:
|
||||
- {{ compiler('c') }}
|
||||
- {{ compiler('cxx') }}
|
||||
- cmake
|
||||
- python {{ python }}
|
||||
- libpng >=1.6.32,<1.6.35
|
||||
- setuptools
|
||||
- sls_detector_lib refactor
|
||||
- pyzmq
|
||||
- pybind11 2.2
|
||||
|
||||
host:
|
||||
- python
|
||||
- pybind11 2.2
|
||||
|
||||
run:
|
||||
- python
|
||||
- numpy
|
||||
- sls_detector_lib refactor
|
||||
- pyzmq
|
||||
- libstdcxx-ng
|
||||
- libgcc-ng
|
||||
|
||||
|
||||
test:
|
||||
imports:
|
||||
- sls_detector
|
||||
|
||||
|
||||
|
||||
about:
|
||||
summary: "Interacting with detectors"
|
Reference in New Issue
Block a user