-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmeta.yaml
More file actions
48 lines (40 loc) · 894 Bytes
/
meta.yaml
File metadata and controls
48 lines (40 loc) · 894 Bytes
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
{% set name = "PyCytoData" %}
{% set version = "0.1.3" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 20f161d9822c69e36b7253a5170e270427340a613397b47e59a04f02020f1a53
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
- numpy >=1.20
- pandas
- fcsparser
test:
requires:
- pytest
- pytest-cov
- coverage
- pytest-mock
imports:
- PyCytoData
about:
home: https://github.com/kevin931/PyCytoData
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: An Elegant Data Analysis Tool for CyTOF.
extra:
recipe-maintainers:
- kevin931