Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New recipe: pysradb #12470

Merged
merged 1 commit into from
Dec 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions recipes/pysradb/meta.yaml
Original file line number Diff line number Diff line change
@@ -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