diff --git a/recipes/airportsdata/meta.yaml b/recipes/airportsdata/meta.yaml new file mode 100644 index 0000000000000..f20eeb834d3a2 --- /dev/null +++ b/recipes/airportsdata/meta.yaml @@ -0,0 +1,42 @@ +{% set name = "airportsdata" %} +{% set version = "20241001" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/airportsdata-{{ version }}.tar.gz + sha256: fa0bd143b4f4be3557cb892fa0612ef210fd91a92bd720b4d8221de576a4fa00 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.9 + - setuptools + - pip + run: + - python >=3.9 + +test: + imports: + - airportsdata + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/mborsetti/airportsdata + summary: Extensive database of location and timezone data for nearly every airport and landing strip in the world. + license: MIT + license_file: LICENSE + dev_url: https://github.com/mborsetti/airportsdata + +extra: + recipe-maintainers: + - pavelzw diff --git a/recipes/outlines-core/meta.yaml b/recipes/outlines-core/meta.yaml new file mode 100644 index 0000000000000..4d81a1a1cccbc --- /dev/null +++ b/recipes/outlines-core/meta.yaml @@ -0,0 +1,56 @@ +{% set name = "outlines-core" %} +{% set version = "0.1.0" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/outlines_core-{{ version }}.tar.gz + sha256: aa9f04bb48ed46af332615ba6ea9aef40199c35b43ba1d3f32168a4bf378ae9e + +build: + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python + - setuptools >=45 + - setuptools-scm >=6.2 + - setuptools-rust + - pip + - {{ compiler('rust') }} + - {{ compiler('c') }} + - {{ stdlib('c') }} + run: + - python + - interegular + - numpy <2.0.0 + - cloudpickle + - diskcache + - pydantic >=2.0 + - referencing + - jsonschema + - tqdm + - datasets + - typing_extensions + +test: + imports: + - outlines_core + commands: + - pip check + requires: + - pip + +about: + # https://github.com/dottxt-ai/outlines/issues/1200 + home: https://github.com/dottxt-ai/outlines + summary: Structured Text Generation in Rust + license: Apache-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - pavelzw