File tree 1 file changed +47
-0
lines changed
recipes/tqdm-logging-wrapper
1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ {% set name = "tqdm-logging-wrapper" %}
2
+ {% set version = "1.0.1" %}
3
+ {% set python_min = "3.9" %}
4
+
5
+ package :
6
+ name : {{ name|lower }}
7
+ version : {{ version }}
8
+
9
+ source :
10
+ url : https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
11
+ sha256 : 072d00d3fc915af1191e65af8840039cefa623e17c119dba485206dfa41dd440
12
+
13
+ build :
14
+ noarch : python
15
+ number : 0
16
+ script : {{ PYTHON }} -m pip install . -vv
17
+
18
+ requirements :
19
+ host :
20
+ - python {{ python_min }}
21
+ - pip
22
+ - setuptools
23
+ - setuptools-scm >=3.4
24
+
25
+ run :
26
+ - python >={{ python_min }}
27
+ - tqdm
28
+
29
+ test :
30
+ imports :
31
+ - tqdm_logging_wrapper
32
+ requires :
33
+ - pip
34
+ - python {{ python_min }}
35
+ commands :
36
+ - pip check
37
+ - python -c "import tqdm_logging_wrapper"
38
+
39
+ about :
40
+ home : https://github.com/EpicWink/tqdm-logging-wrapper
41
+ summary : ' A simple tqdm wrapper for writing progress bars to logs'
42
+ license : MIT
43
+ license_file : LICENSE
44
+
45
+ extra :
46
+ recipe-maintainers :
47
+ - mansurjisan
You can’t perform that action at this time.
0 commit comments