forked from paaube/PyOptik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
65 lines (58 loc) · 1.34 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
package:
name: pyoptik
version: {{ GIT_DESCRIBE_TAG }}
source:
path: ../
git_url: https://github.com/MartinPdeS/PyOptik.git
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
channels:
- conda-forge
- martinpdes
requirements:
host:
- python {{ PY_VER }}*
- setuptools >=40.8.0
- wheel
- setuptools-scm >=8.0
- pip
run:
- flexparser <0.4 # This is due to a dataclass inheritance problem coming from the pint package
- pint ~= 0.24
- martinpdes::mpsplots
- pyyaml ~=6.0
- requests ~=2.31
- matplotlib ~=3.8
- numpy ~=1.26
- pydantic ~=2.9
- tabulate ~=0.9
about:
home: https://github.com/MartinPdeS/PyOptik
license: MIT
summary: "A package for refractive index values."
description: PyOptik is a library that helps the end-user to build it's own refractive index library.
dev_url: https://github.com/MartinPdeS/PyOptik
doc_url: https://pyoptik.readthedocs.io
license_file: LICENSE
keywords:
- optics
- refractive index
- material
test:
imports:
- PyOptik
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