-
Notifications
You must be signed in to change notification settings - Fork 2
/
meta.yaml
71 lines (63 loc) · 1.56 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
71
package:
name: supymode
version: "{{ GIT_DESCRIBE_TAG }}"
source:
git_url: https://github.com/MartinPdeS/SuPyMode.git
build:
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
host:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- python {{ PY_VER }}*
- scikit-build-core ~=0.3
- pybind11 ~=2.13
- python-build ~=1.2
- setuptools_scm[toml] ~=8.0
run:
- python {{PY_VER}}*
- martinpdes::pyoptik
- martinpdes::mpsplots
- martinpdes::fiberfusing
- martinpdes::pyfibermodes
- martinpdes::pyfinitdiff
- numpy ~=1.26
- pydantic ~=2.9.2
- tabulate ~=0.9
- scipy ~=1.14.0
about:
home: https://github.com/MartinPdeS/SuPyMode
license: MIT
summary: "A package for light propagation in fiber optics component."
description: SuPyMode is a library that uses Finite-difference and coupled mode theory to simulate light propagation in fiber optics tapered components.
dev_url: https://github.com/MartinPdeS/SuPyMode
doc_url: https://martinpdes.github.io/SuPyMode/
license_file: LICENSE
keywords:
- optics
- fiber optics
- coupled mode theory
- finite difference
- physics
- computational optics
- simulation
files:
include:
- "SuPyMode/binary/*.so"
test:
imports:
- SuPyMode
requires:
- python {{PY_VER}}*
- pytest >=0.6
- pytest-cov >=2.0
- pytest-json-report ~=1.5.0
- coverage ~=7.6.1
commands:
- python -m pytest
source_files:
- tests
extra:
recipe-maintainers:
- MartinPdeS