diff --git a/autoBIGS.engine/meta.yaml b/autoBIGS.engine/meta.yaml new file mode 100644 index 0000000..108c575 --- /dev/null +++ b/autoBIGS.engine/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "autoBIGS.engine" %} +{% set version = "0.7.2.dev0+g744a6c2.d20250123" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: file:///workspaces/automlst.engine/dist/autobigs_engine-0.7.2.dev0%2Bg744a6c2.d20250123.tar.gz + sha256: 3ae51ca757fa27cef577aa7733d8308ca5b74f86dc7996149bc555d0468d938e + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.11 + - setuptools >=64 + - setuptools-scm >=8 + - pip + run: + - python >=3.11 + - biopython ==1.85 + - aiohttp ==3.11.* + +test: + imports: + - autobigs + commands: + - pip check + requires: + - pip + +about: + summary: A library to rapidly fetch fetch MLST profiles given sequences for various diseases. + license: GPL-3.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - RealYHD diff --git a/pyproject.toml b/pyproject.toml index a38d4f3..e91f57f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ readme = "README.md" dependencies = [ "biopython==1.85", - "aiohttp[speedups]==3.11", + "aiohttp[speedups]==3.11.*", ] requires-python = ">=3.11" description = "A library to rapidly fetch fetch MLST profiles given sequences for various diseases." diff --git a/requirements.txt b/requirements.txt index aa2dfc2..0b8be9b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp[speedups]==3.11 +aiohttp[speedups]==3.11.* biopython==1.85 pytest pytest-asyncio