Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipe for CADET-Python #28170

Merged
merged 2 commits into from
Nov 13, 2024
Merged
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
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