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

Create meta.yaml for drug2cell #52452

Merged
merged 6 commits into from
Dec 2, 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
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"

Loading