File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ {% set name = "zvtk" %}
2+ {% set version = "0.1.1" %}
3+ {% set python_min = "3.10" %}
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 : d0c58939b1c244e5e7225cce12a859daaa8313521c60361fd0216c980f89ae08
12+
13+ build :
14+ noarch : python
15+ script : {{ PYTHON }} -m pip install . -vv
16+ number : 0
17+
18+ requirements :
19+ host :
20+ - python {{ python_min }}
21+ - pip
22+ - setuptools
23+ - flit-core
24+ run :
25+ - python >={{ python_min }}
26+ - pyvista
27+ - zstandard
28+ - tqdm
29+
30+ test :
31+ imports :
32+ - zvtk
33+ commands :
34+ - pip check
35+ requires :
36+ - python {{ python_min }}
37+ - pip
38+
39+ about :
40+ home : https://github.com/pyvista/zvtk
41+ summary : ' Compress VTK files using zstandard'
42+ description : |
43+ Seamlessly compress VTK datasets using Zstandard.
44+ Read in VTK datasets 37x faster, write 14x faster,
45+ all while using 28% less space versus VTK's modern XML format.
46+ license : MIT
47+ license_file : LICENSE
48+ doc_url : https://github.com/pyvista/zvtk
49+ dev_url : https://github.com/pyvista/zvtk
50+
51+ extra :
52+ recipe-maintainers :
53+ - pmav99
You can’t perform that action at this time.
0 commit comments