Skip to content

Commit

Permalink
Add recipe for CADET-Python
Browse files Browse the repository at this point in the history
  • Loading branch information
schmoelder committed Nov 13, 2024
1 parent 9b4f34d commit 8a1ffd0
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions recipes/CADET-Python/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "CADET-Python" %}
{% set version = "1.0.0" %}
{% set python_min = "3.7" %}

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

source:
url: https://github.com/cadet/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
sha256: 0019dfc4b32d63c1392aa264aed2253c1e0c2fb09216f8e2cc269bbfb8bb49b5

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

0 comments on commit 8a1ffd0

Please sign in to comment.