From 00baeb3c738d735f451ab217b4d25e8ecef8ae86 Mon Sep 17 00:00:00 2001 From: Saket Choudhary Date: Mon, 3 Dec 2018 15:06:25 -0800 Subject: [PATCH] New recipe: pysradb --- recipes/pysradb/meta.yaml | 47 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 recipes/pysradb/meta.yaml diff --git a/recipes/pysradb/meta.yaml b/recipes/pysradb/meta.yaml new file mode 100644 index 0000000000000..6a5ba83900c0b --- /dev/null +++ b/recipes/pysradb/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "pysradb" %} +{% set version = "0.2.2" %} +{% set file_ext = "tar.gz" %} +{% set hash_type = "sha256" %} +{% set hash_value = "15736bec19ca3927b68dd13e3a9ccfab5eee9e586a3d7017b0081605ef37b524" %} + + +package: + name: '{{ name|lower }}' + version: '{{ version }}' + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }} + '{{ hash_type }}': '{{ hash_value }}' + +build: + number: 0 + script: python setup.py install --single-version-externally-managed --record=record.txt + noarch: python + +requirements: + host: + - python + - setuptools + - pandas >=0.23.4 + - tqdm >=4.28 + run: + - python + - pandas >=0.23.4 + - tqdm >=4.28 + +test: + imports: + - pysradb + - pysradb.pysradb + +about: + home: https://github.com/saketkc/pysradb + license: BSD License + license_family: BSD + summary: 'Python package for interacting with SRAdb and downloading datasets from SRA' + description: 'Python package for interacting with SRAdb and downloading datasets from SRA' + doc_url: 'https://saketkc.github.io/pysradb' + +extra: + recipe-maintainers: + - saketkc