Skip to content

Commit

Permalink
Create meta.yaml for drug2cell (#52452)
Browse files Browse the repository at this point in the history
* Create meta.yaml

* Update meta.yaml

changed source url

* Update meta.yaml

* Update meta.yaml

* Update meta.yaml

Added run exports section

* Update meta.yaml
  • Loading branch information
Mennayousef authored Dec 2, 2024
1 parent 0ca33af commit 1536068
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions recipes/drug2cell/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{% set name = "drug2cell" %}
{% set version = "0.1.1" %}
{% set sha256 = "f9e03762f84320bd2357c92ca576b9a67346dbaf157620a69c617841e089495a" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv
run_exports:
- {{ pin_subpackage('drug2cell', max_pin="x.x") }}

requirements:
host:
- python >=3.10,<3.11
- pip
run:
- python >=3.10,<3.11
- anndata
- pandas >=1.5.3,<2.0
- numpy
- statsmodels
- scipy
- blitzgsea

test:
commands:
- python -c "import drug2cell"
about:
home: https://github.com/teichlab/drug2cell/
license: non-commercial license
license_file: LICENSE
summary: "This is a collection of utility functions for gene group activity evaluation in scanpy"

0 comments on commit 1536068

Please sign in to comment.