Skip to content

Commit 8a30f92

Browse files
committed
Add meta.yaml for conda builds
1 parent fec571e commit 8a30f92

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

meta.yaml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{% set name = "PythonTemplate" %}
2+
{% set version = "0.0.1" %}
3+
4+
package:
5+
name: "{{ name|lower }}"
6+
version: "{{ version }}"
7+
8+
source:
9+
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
10+
sha256:
11+
12+
build:
13+
noarch: python
14+
number: 0
15+
script: "{{ PYTHON }} -m pip install . --force-reinstall --no-deps -vv "
16+
17+
requirements:
18+
build:
19+
- python
20+
- setuptools
21+
host:
22+
- python
23+
run:
24+
- python >=3.9
25+
26+
test:
27+
requires:
28+
- pytest
29+
- pytest-cov
30+
- coverage
31+
- pytest-mock
32+
imports:
33+
- PythonTemplate
34+
35+
36+
about:
37+
home: https://github.com/kevin931/PythonTemplate
38+
license: CC0
39+
license_family: CC0
40+
license_file: LICENSE.txt
41+
summary: CyTOF Dimension Reduction Framework.
42+
43+
extra:
44+
recipe-maintainers:
45+
- kevin931

0 commit comments

Comments
 (0)