-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
45 lines (37 loc) · 790 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
{% set name = "PythonTemplate" %}
{% set version = "0.0.1" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256:
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --force-reinstall --no-deps -vv "
requirements:
build:
- python
- setuptools
host:
- python
run:
- python >=3.9
test:
requires:
- pytest
- pytest-cov
- coverage
- pytest-mock
imports:
- PythonTemplate
about:
home: https://github.com/kevin931/PythonTemplate
license: CC0
license_family: CC0
license_file: LICENSE.txt
summary: CyTOF Dimension Reduction Framework.
extra:
recipe-maintainers:
- kevin931