diff --git a/recipes/drug2cell/meta.yaml b/recipes/drug2cell/meta.yaml new file mode 100644 index 0000000000000..5d6a93a396ea4 --- /dev/null +++ b/recipes/drug2cell/meta.yaml @@ -0,0 +1,49 @@ +{% set name = "drug2cell" %} +{% set version = "0.1.0" %} # Specify the version here +{% set sha256 = "a6353f989f92f05b36972d42795f7f071245d351bf05027dc7e3e4a074ea5bb8" %} +{% set python_min = "3.6" %} # Specify the minimum supported Python version + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://github.com/teichlab/drug2cell/archive/main.tar.gz + sha256: {{ sha256 }} + +build: + noarch: python + number: 0 + script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv + +requirements: + host: + - python >={{ python_min }} # Corrected spacing + - pip + - setuptools # Required build backend + run: + - python >={{ python_min }} # Corrected spacing + - anndata + - pandas + - numpy + - statsmodels + - scipy + - blitzgsea + +test: + imports: + - drug2cell + commands: + - pip check # Check for any dependency issues + requires: + - pip # Ensure pip is available for the check + +about: + home: https://github.com/teichlab/drug2cell/ + license: MIT + license_file: LICENSE + summary: "A collection of utility functions for gene group activity evaluation in Scanpy" + +extra: + recipe-maintainers: + - Mennayousef