diff --git a/recipes/keras-nlp/meta.yaml b/recipes/keras-nlp/meta.yaml new file mode 100644 index 0000000000000..2d5d8b751ca31 --- /dev/null +++ b/recipes/keras-nlp/meta.yaml @@ -0,0 +1,42 @@ +{% set name = "keras-nlp" %} +{% set version = "0.3.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/keras-nlp-{{ version }}.tar.gz + sha256: 44723deed5c271078cae48ca91cf8e8f6c9ffe85e01a52aee17d02366de959a5 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.7 + - pip + run: + - python >=3.7 + - absl-py + - numpy + - packaging + - tensorflow >=2.0 + +test: + imports: + - examples + +about: + home: https://keras.io/examples/nlp/ + summary: Industry-strength Natural Language Processing extensions for Keras. + license: Apache-2.0 + license_file: LICENSE + dev_url: https://github.com/keras-team/keras-nlp + doc_url: https://keras.io/examples/nlp/ + +extra: + recipe-maintainers: + - Anselmoo