Skip to content

Commit

Permalink
Initial feedstock commit with conda-smithy 3.33.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
conda-forge-admin committed Mar 24, 2024
0 parents commit 8ff3c3c
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
65 changes: 65 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{% set version = "4.2.1" %}

package:
name: genomekit
version: {{ version }}

source:
url: https://github.com/deepgenomics/GenomeKit/archive/refs/tags/v{{ version }}.tar.gz
sha256: 8793fb15cba3f572879996d47d6320c8ec983995c6f713848f53ca5dae7e5844

build:
number: 0
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed .
# Py3.9 includes backwards-incompatible changes to the C extension API
# See https://docs.python.org/3/whatsnew/3.9.html#changes-in-the-c-api
# TODO Add support for more python versions
skip: true # [py!=38]

requirements:
build:
- {{ compiler('cxx') }}

host:
- appdirs
- fmt
- numpy # [not win]
# avoid build failure on Windows
- numpy >=1.18.0,<1.19.0 # [win]
- typing-extensions
- zlib
- python
- pip

run:
- appdirs
- crc32c
- google-cloud-storage
- {{ pin_compatible('numpy') }}
- typing-extensions
- importlib-metadata
- tqdm
- python

test:
imports:
- genome_kit
requires:
- pytest-cov
- pip
source_files:
- tests
commands:
- pip check
- python -m unittest discover

about:
doc_url: https://genomekit.readthedocs.io/
home: https://github.com/deepgenomics/GenomeKit
license: "Apache-2.0"
license_file: "LICENSE"
summary: GenomeKit is a Python library for fast and easy access to genomic resources such as sequence, data tracks, and annotations.

extra:
recipe-maintainers:
- ovesh

0 comments on commit 8ff3c3c

Please sign in to comment.