{% set name = "gffutils" %}
{% set version = "0.10.1" %}
{% set sha256 = "a8fc39006d7aa353147238160640e2210b168f7849cb99896be3fc9441e351cb" %}

package:
  name: "{{ name|lower }}"
  version: "{{ version }}"

source:
  url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
  sha256: "{{ sha256 }}"

build:
  noarch: python
  number: 1
  script: "{{ PYTHON }} -m pip install . --ignore-installed --no-deps -vv"

requirements:
  host:
    - pip
    - python
  run:
    - argcomplete >=1.9.4
    - argh >=0.26.2
    - pyfaidx >=0.5.5.2
    - python
    - simplejson
    - six >=1.12.0

test:
  imports:
    - gffutils
  commands:
    - gffutils-cli -h

about:
  home: "https://github.com/daler/gffutils"
  license: MIT
  license_family: MIT
  license_file: LICENSE
  summary: "Work with GFF and GTF files in a flexible database framework"
  doc_url: http://daler.github.io/gffutils/
  dev_url: https://github.com/daler/gffutils

extra:
  identifiers:
    - biotools:GFFutils
