-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
54 lines (46 loc) · 970 Bytes
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% set name = "CytofDR" %}
{% set version = "0.3.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 9de874eebe1a51cc630a59c2bd1e01b019a6bcbed291b35734d87fed9f364fb9
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --force-reinstall --no-deps -vv "
requirements:
build:
- python
- setuptools
host:
- python
run:
- python >=3.7
- scikit-learn
- numpy
- scipy
- umap-learn
- openTSNE
- phate
- python-annoy
- matplotlib
- seaborn
test:
requires:
- pytest
- pytest-cov
- coverage
- pytest-mock
imports:
- CytofDR
about:
home: https://github.com/kevin931/CytofDR
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: CyTOF Dimension Reduction Framework.
extra:
recipe-maintainers:
- kevin931