diff --git a/recipes/camlhmp/meta.yaml b/recipes/camlhmp/meta.yaml new file mode 100644 index 0000000000000..81544753240b8 --- /dev/null +++ b/recipes/camlhmp/meta.yaml @@ -0,0 +1,49 @@ +{% set name = "camlhmp" %} +{% set version = "0.0.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/camlhmp/camlhmp-{{ version }}.tar.gz + sha256: 882013057ea4ff06c84919a71d50309e9db35efae507c1560c4380b0139e0d5e + +build: + noarch: python + script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv . + number: 0 + run_exports: + - {{ pin_subpackage(name|lower, max_pin='x.x.x') }} + +requirements: + host: + - python >=3.8 + - poetry + - pip + run: + - blast + - executor + - pigz + - python >=3.8 + - pyyaml + - rich-click >=1.6.0 + +test: + imports: + - camlhmp + commands: + - pip check + - camlhmp --help + requires: + - pip + +about: + home: https://github.com/rpetit3/camlhmp + summary: Classification through yAML Heuristic Mapping Protocol + license: MIT + license_file: LICENSE + +extra: + recipe-maintainers: + - rpetit3