forked from conda-forge/tqdm-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
58 lines (51 loc) · 1.12 KB
/
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
52
53
54
55
56
57
58
{% set version = "4.65.2" %}
package:
name: tqdm
version: {{ version }}
source:
url: https://pypi.io/packages/source/t/tqdm/tqdm-{{ version }}.tar.gz
sha256: 5f7d8b4ac76016ce9d51a7f0ea30d30984888d97c474fdc4a4148abfb5ee76aa
build:
noarch: python
entry_points:
- tqdm = tqdm.cli:main
number: 1
script: {{ PYTHON }} -m pip install . --no-deps -vv
requirements:
host:
- python >=3.7
- pip
- setuptools_scm >=3.4
- toml
run:
- python >=3.7
- colorama
test:
requires:
- pip
- pytest
- pytest-cov
- pytest-timeout
- pytest-asyncio # [py>=37]
source_files:
- tests
- pyproject.toml
imports:
- tqdm
commands:
- pip check
- tqdm --help
- tqdm -v
- pytest -k "not tests_perf"
about:
home: https://pypi.python.org/pypi/tqdm
license: MPL-2.0 or MIT
license_file: LICENCE
summary: A Fast, Extensible Progress Meter
dev_url: https://tqdm.github.io/docs/tqdm
doc_url: https://github.com/tqdm/tqdm#tqdm
doc_source_url: https://github.com/tqdm/tqdm/blob/master/README.rst
extra:
recipe-maintainers:
- casperdcl
- pmlandwehr