2025-02-17 15:13:27 +00:00
|
|
|
{% set name = "autobigs.engine" %}
|
2025-02-14 13:25:41 -06:00
|
|
|
{% set version = "0.11.0" %}
|
|
|
|
|
|
|
|
package:
|
|
|
|
name: {{ name|lower|replace(".", "-") }}
|
|
|
|
version: {{ version }}
|
|
|
|
|
|
|
|
source:
|
|
|
|
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/autobigs_engine-{{ version }}.tar.gz
|
|
|
|
sha256: d479b0bce5fcf2c3eb2e666b780b55d0c8a2c03293c9200db9eeac74e869f47b
|
|
|
|
|
|
|
|
build:
|
|
|
|
noarch: python
|
|
|
|
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
|
|
|
|
number: 0
|
|
|
|
|
|
|
|
requirements:
|
|
|
|
host:
|
|
|
|
- python >=3.12
|
|
|
|
- setuptools >=64
|
|
|
|
- setuptools-scm >=8
|
|
|
|
- pip
|
|
|
|
run:
|
|
|
|
- python >=3.12
|
2025-02-17 15:13:27 +00:00
|
|
|
- biopython ==1.85
|
|
|
|
- aiohttp ==3.11.*
|
2025-02-14 13:25:41 -06:00
|
|
|
|
|
|
|
test:
|
|
|
|
imports:
|
|
|
|
- autobigs
|
|
|
|
commands:
|
|
|
|
- pip check
|
|
|
|
requires:
|
|
|
|
- pip
|
|
|
|
|
|
|
|
about:
|
|
|
|
summary: A library to rapidly fetch fetch MLST profiles given sequences for various diseases.
|
2025-02-17 15:13:27 +00:00
|
|
|
dev_url: https://github.com/RealYHD/autoBIGS.engine
|
|
|
|
license: GPL-3.0
|
2025-02-14 13:25:41 -06:00
|
|
|
license_file: LICENSE
|
|
|
|
|
|
|
|
extra:
|
|
|
|
recipe-maintainers:
|
2025-02-17 15:13:27 +00:00
|
|
|
- RealYHD
|