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