forked from ESMValGroup/ESMValCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yamale_meta.yaml
52 lines (45 loc) · 1.16 KB
/
yamale_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
{% set name = "yamale" %}
{% set version = "2.0" %}
{% set file_ext = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash_value = "532897422b590f617a075d47badde4874c0b1d49ac10e151c1f04f73d0524b03" %}
package:
name: '{{ name|lower }}'
version: '{{ version }}'
source:
fn: '{{ name }}-{{ version }}.{{ file_ext }}'
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }}
'{{ hash_type }}': '{{ hash_value }}'
build:
noarch: python
number: 0
entry_points:
- yamale=yamale.command_line:main
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- pyyaml
run:
- python
- pyyaml
test:
imports:
- yamale
- yamale.readers
- yamale.readers.tests
- yamale.schema
- yamale.syntax
- yamale.syntax.tests
- yamale.tests
- yamale.validators
- yamale.validators.tests
commands:
- yamale --help
about:
home: https://github.com/23andMe/Yamale
license: MIT License
license_family: MIT
summary: A schema and validator for YAML.
description: A schema and validator for YAML.