-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrecipe.yaml
More file actions
91 lines (83 loc) · 2.49 KB
/
recipe.yaml
File metadata and controls
91 lines (83 loc) · 2.49 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
85
86
87
88
89
90
91
schema_version: 1
context:
name: "curve-apps"
version: "0.0.0.dev0" # This will be replaced by the actual version in the build process
python_min: "3.12"
module_name: ${{ name|lower|replace("-", "_") }}
package:
name: ${{ name|lower }}
version: ${{ version }}
source:
# url: https://github.com/MiraGeoscience/{{ name }}/archive/v{{ version }}.tar.gz
# sha256: d5558cd419c8d46bdc958064cb97f963d1ea793866414c025906ec15033512ed
# curl -sL https://github.com/MiraGeoscience/{{ name }}/archive/v{{ version }}.tar.gz | openssl sha256
path: ../${{ name }}
build:
number: 0
noarch: python
script: ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
requirements:
host:
- python ${{ python_min }}.*
- poetry-core >=1.8.0
- poetry-dynamic-versioning >=1.9, <2.0.dev
- setuptools
- pip
run:
- python >=${{ python_min }}
# Mira packages
- geoh5py >=0.13.0a2, 0.13.*
- geoapps-utils >=0.7.0a2, 0.7.*
# other direct dependencies
- numpy >=2.4.2, 2.4.*
- pydantic >=2.12.0, <2.13
- scikit-image >=0.26.0, 0.26.*
- scipy 1.17.*
- tqdm >=4.66.1, 4.*
- dask-core 2025.3.*
# Dash and related dependencies
- dash >=3.4.0, 3.*
- dash-ag-grid >=32.3.1, 32.*
- dash-bootstrap-components >=2.0.3, 2.*
- dash-core-components 2.*
- dash-daq 0.6.*
- dash-html-components 2.*
- dash-table 5.*
- waitress >=3.0.2, 3.*
run_constraints:
- pywebview 6.*
tests:
- python:
imports:
- ${{ module_name }}
- ${{ module_name }}._version
- ${{ module_name }}.peak_finder
- dask
- script:
- pytest --ignore=tests/version_test.py
requirements:
run:
- pytest
files:
source:
- tests/
- package_contents:
files:
- site-packages/${{ module_name }}/_version.py
about:
summary: Auto-detection of trends and edges in geoscientific data.
description: |
Auto-detection of trends and edges in geoscientific data.
Includes the peak-finder application for the detection and grouping of time-domain
electromagnetic (TEM) anomalies measured along flight lines.
license: MIT
license_file:
- LICENSE
- docs/source/THIRD_PARTY_SOFTWARE.rst
homepage: https://www.mirageoscience.com/mining-industry-software/python-integration/
repository: https://github.com/MiraGeoscience/curve-apps
documentation: https://mirageoscience-curve-apps.readthedocs-hosted.com/
extra:
recipe-maintainers:
- andrewg-mira
- sebhmg