diff --git a/recipes/CADET-Python/meta.yaml b/recipes/CADET-Python/meta.yaml new file mode 100644 index 0000000000000..0c71be777650a --- /dev/null +++ b/recipes/CADET-Python/meta.yaml @@ -0,0 +1,49 @@ +{% set name = "CADET-Python" %} +{% set version = "1.0.0" %} +{% set python_min = "3.10" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://github.com/cadet/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz + sha256: e3b12b1662dbab71374453f320c4d13cbd4175a8d89875e5dc496802f9b08782 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - setuptools + - python {{ python_min }} + - pip + run: + - python >={{ python_min }} + - addict + - numpy + - h5py + - filelock + - cadet + +test: + imports: + - cadet + commands: + - pip check + requires: + - pip + - python {{ python_min }} + +about: + home: https://github.com/cadet/CADET-Python + summary: File based Python Interface for CADET + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - schmoelder + - ronald-jaepel