-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeta.yaml
41 lines (31 loc) · 907 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
{% set data = load_setup_py_data(setup_file="setup.py", from_recipe_dir=True) %}
{% set github_url = "https://github.com/erikmannerfelt/glacier_lengths" %}
package:
name: "{{ data['name'] }}"
version: "{{ data['version'] }}"
source:
git_url: "{{ github_url }}"
git_rev: "v{{ data['version'] }}"
build:
number: 0
script: python -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv
preserve_egg_dir: True
noarch: generic
requirements:
host:
- python
- pip
- numpy
- shapely
run:
- python
- numpy
- shapely
test:
imports:
- glacier_lengths
about:
home: "{{ github_url }}"
license: Apache-2.0
license_file: LICENSE
summary: "{{ data['description'] }}"