Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions recipes/zvtk/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set name = "zvtk" %}
{% set version = "0.1.1" %}
{% set python_min = "3.10" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: d0c58939b1c244e5e7225cce12a859daaa8313521c60361fd0216c980f89ae08

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0

requirements:
host:
- python {{ python_min }}
- pip
- setuptools
- flit-core
run:
- python >={{ python_min }}
- pyvista
- zstandard
- tqdm

test:
imports:
- zvtk
commands:
- pip check
requires:
- python {{ python_min }}
- pip

about:
home: https://github.com/pyvista/zvtk
summary: 'Compress VTK files using zstandard'
description: |
Seamlessly compress VTK datasets using Zstandard.
Read in VTK datasets 37x faster, write 14x faster,
all while using 28% less space versus VTK's modern XML format.
license: MIT
license_file: LICENSE
doc_url: https://github.com/pyvista/zvtk
dev_url: https://github.com/pyvista/zvtk

extra:
recipe-maintainers:
- pmav99