-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create meta.yaml for drug2cell (#52452)
* 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
1 parent
0ca33af
commit 1536068
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|