Skip to content

Commit

Permalink
Merge pull request #28170 from schmoelder/add_cadet-python
Browse files Browse the repository at this point in the history
Add recipe for CADET-Python
  • Loading branch information
ocefpaf authored Nov 13, 2024
2 parents 6cdcde8 + 98f2c98 commit 15b8c39
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.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

0 comments on commit 15b8c39

Please sign in to comment.