-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeta.yaml
More file actions
42 lines (35 loc) · 754 Bytes
/
meta.yaml
File metadata and controls
42 lines (35 loc) · 754 Bytes
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
{% set name = "python-rle" %}
{% set version = "0.0.3" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: 4e07dc3c775a4bbc6e2cc7a3102e4cf33f4431e35c7b5fedc863edc44bc7b6aa
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- pip
- python
- tqdm
run:
- python
- tqdm
test:
imports:
- rle
- tests
about:
home: "https://github.com/tnwei/python-rle"
license: MIT
license_family: MIT
license_file:
summary: "Run-length encoding for data analysis in Python"
doc_url:
dev_url:
extra:
recipe-maintainers:
- 12769364