-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeta.yaml
More file actions
84 lines (76 loc) · 1.98 KB
/
meta.yaml
File metadata and controls
84 lines (76 loc) · 1.98 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package:
name: flowcypy
version: {{ GIT_DESCRIBE_TAG }}
source:
git_url: https://github.com/MartinPdeS/FlowCyPy.git
build:
number: 0
script: |
@echo on # [win]
"%PYTHON%" -m pip install . -vv --no-deps --no-build-isolation ^ # [win]
"--config-settings=cmake.args=-GNinja;-DCMAKE_Fortran_COMPILER=flang;-DCMAKE_LINKER=link;-DCMAKE_RC_COMPILER=rc;-DCMAKE_MT=mt" ^ # [win]
|| exit /b 1 # [win]
"${PYTHON}" -m pip install . -vv --no-deps --no-build-isolation # [unix]
requirements:
build:
- "{{ compiler('c') }}"
- "{{ compiler('cxx') }}"
- vs2022_win-64 # [win]
- flang_win-64 # [win]
- ninja
- cmake
- "{{ compiler('fortran') }}" # [unix]
- fftw
host:
- python {{ PY_VER }}*
- scikit-build-core ~=0.3
- pybind11 ~=2.13
- python-build ~=1.2
- setuptools_scm[toml] ~=8.0
- numpy >=2.0,<3
- fftw
run:
- python {{PY_VER}}*
- pandas ~=2.2
- seaborn ~=0.13
- pydantic ~=2.9
- numpy >=2.0
- pint ~=0.24
- martinpdes::pymiesim
- martinpdes::mpsplots
- martinpdes::typedunit
about:
home: https://github.com/MartinPdeS/FlowCyPy
license: MIT
summary: "A package for flow-cytometry simulations."
description: FlowCyPy is a library that simulate source - scatterer - detector systems in the context of flow-cytometry systems.
dev_url: https://github.com/MartinPdeS/FlowCyPy
doc_url: https://martinpdes.github.io/FlowCyPy/
license_file: LICENSE
keywords:
- optics
- refractive index
- material
- microbeads
- Mie scattering
files:
include:
- "FlowCyPy/binary/*.so"
test:
imports:
- FlowCyPy
requires:
- python {{ PY_VER }}*
- python_abi 3.13.* *_cp313 # [py==313]
- pytest >=0.6
- pytest-cov >=2.0
- pytest-json-report ==1.5
- coverage ==7.6
commands:
- python -m pytest --config-file=./pytest.ini
source_files:
- tests
- pytest.ini
extra:
recipe-maintainers:
- MartinPdeS