-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeta.yaml
49 lines (42 loc) · 980 Bytes
/
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
{% set name = "pygmt" %}
{% set version = "0.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: b4c825c790f28c619c176044c9e8836b7ca4a5125b93b2b9f8ee9039f16b21c3
build:
noarch: python
number: 1
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.6
run:
- gmt >=6.1.1,<7.0
- netCDF4
- numpy
- packaging
- pandas
- python >=3.6
- xarray
test:
imports:
- pygmt
- pygmt.tests
commands:
- python -c "import pygmt; pygmt.show_versions()"
about:
home: https://www.pygmt.org
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
summary: A Python interface for the Generic Mapping Tools
doc_url: https://www.pygmt.org/
dev_url: https://github.com/GenericMappingTools/pygmt
extra:
recipe-maintainers:
- moorepants
- weiji14