forked from m0nhawk/grafana_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
45 lines (38 loc) · 849 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
{% set data = load_setup_py_data(setup_file='setup.py', from_recipe_dir=True) %}
{% set name = data['name'] %}
{% set version = data['version'] %}
{% set url = data['url'] %}
{% set license = data['license'] %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
path: .
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
host:
- python
- requests
- pyyaml
run:
- python
- requests
- pyyaml
test:
imports:
- grafana_api
- grafana_api.api
about:
home: "{{ url }}"
license: "{{ license }}"
license_family: "{{ license }}"
license_file: LICENSE
summary: Yet another Python library for Grafana API
doc_url: https://m0nhawk.github.io/grafana_api/
dev_url:
extra:
recipe-maintainers:
- m0nhawk