-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathmeta.yaml
56 lines (49 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
{% set name = "mseedlib" %}
{% set version = "0.0.6" %}
{% set sha256 = "ceea0ea9fee075f5c3222837d23f2c196f7dd6012bdd96f3c54fc72ef0d1c540" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/mseedlib-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
build:
- {{ compiler('c') }}
- {{ stdlib('c') }}
- make
host:
- python >=3.9
- hatchling >=1.21.0
- pip
run:
- python >=3.9
test:
imports:
- mseedlib
commands:
- pip check
requires:
- pip
about:
home: https://github.com/EarthScope/mseedlib
summary: 'A Python package for reading and writing miniSEED formatted data'
description: |
The mseedlib package allows for reading and writing of miniSEED
(https://docs.fdsn.org/projects/miniseed3) formatted data, which is
commonly used for seismological and other geophysical time series data.
The module leverages the C-language libmseed
(https://earthscope.github.io/libmseed) for most of the heavy
data format and manipulation work.
license: Apache-2.0
license_file:
- LICENSE
- src/mseedlib/libmseed/LICENSE
extra:
recipe-maintainers:
- megies
- chad-earthscope