From 115e3e18aa7776bd42a256402908c64a5357f34a Mon Sep 17 00:00:00 2001 From: Marcel Martin Date: Wed, 15 Jan 2020 21:02:06 +0100 Subject: [PATCH] [ci skip] Merge PR 19750 Merge PR #19750, commits were: * Update recipes/tinyalign/meta.yaml Co-Authored-By: Marcel Bargull * tinyalign: use generic PyPI URL; add license_file * Add tinyalign recipe --- recipes/tinyalign/meta.yaml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 recipes/tinyalign/meta.yaml diff --git a/recipes/tinyalign/meta.yaml b/recipes/tinyalign/meta.yaml new file mode 100644 index 0000000000000..276a15004863d --- /dev/null +++ b/recipes/tinyalign/meta.yaml @@ -0,0 +1,35 @@ +{% set version = "0.2" %} + +package: + name: tinyalign + version: {{ version }} + +source: + url: https://pypi.io/packages/source/t/tinyalign/tinyalign-{{ version }}.tar.gz + sha256: 33601ea7b3171d7fb495f59ef533d29fba7e0091dd69c1225ff1c2eed10b8a59 + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . --no-deps -vv" + skip: True # [py27] + +requirements: + build: + - {{ compiler('c') }} + host: + - pip + - python + - cython + - setuptools_scm + run: + - python + +test: + imports: + - tinyalign + +about: + home: https://github.com/marcelm/tinyalign/ + license: MIT License + license_file: LICENSE + summary: A small Python module providing edit distance and Hamming distance computation.