Skip to content

Commit 9a3604a

Browse files
authored
Create meta.yaml
1 parent ed8424f commit 9a3604a

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

conda/meta.yaml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{% set name = "kaptive" %}
2+
{% set version = "3.0.0b6" %}
3+
4+
package:
5+
name: {{ name|lower }}
6+
version: {{ version }}
7+
8+
source:
9+
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/kaptive-{{ version }}.tar.gz
10+
sha256: 7144b5bea531a5c5e8022a5898e16d24b0705ebedefedb4470bf5a5864225ae8
11+
12+
build:
13+
entry_points:
14+
- kaptive = kaptive.__main__:main
15+
noarch: python
16+
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir
17+
number: 0
18+
run_exports:
19+
- {{ pin_subpackage('kaptive', max_pin="x") }}
20+
21+
requirements:
22+
host:
23+
- python >=3.9
24+
- pip
25+
- setuptools
26+
run:
27+
- python >=3.9
28+
- biopython >=1.83
29+
- dna_features_viewer
30+
- minimap2
31+
32+
test:
33+
imports:
34+
- kaptive
35+
commands:
36+
- kaptive --help
37+
- minimap2 --help
38+
39+
about:
40+
home: "https://kaptive.readthedocs.io/en/latest"
41+
dev_url: "https://github.com/klebgenomics/Kaptive"
42+
summary: "Reports information about surface polysaccharide loci for Klebsiella pneumoniae species complex and Acinetobacter baumannii genome assemblies."
43+
license: "GPL-3.0-or-later"
44+
license_family: GPL3
45+
license_file: LICENSE
46+
doc_url: "https://kaptive.readthedocs.io/en/latest"
47+
48+
extra:
49+
recipe-maintainers:
50+
- tomdstanton

0 commit comments

Comments
 (0)