diff --git a/recipes/reprit/meta.yaml b/recipes/reprit/meta.yaml new file mode 100644 index 0000000000000..d1aa4048bc033 --- /dev/null +++ b/recipes/reprit/meta.yaml @@ -0,0 +1,41 @@ +{% set name = "reprit" %} +{% set version = "0.3.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: 1e5198c852589518814118fa72dfd0b975e6633fed4c41ec22d69e1824b3b458 + +build: + number: 0 + noarch: python + script: "{{ PYTHON }} -m pip install . -vv" + +requirements: + host: + - python + - pip + run: + - python + +test: + imports: + - reprit + +about: + home: https://github.com/lycantropos/reprit + license: MIT + license_family: MIT + license_file: LICENSE + summary: 'Auto __repr__ method generation.' + description: 'Auto __repr__ method generation.' + doc_url: https://reprit.readthedocs.io/en/latest + dev_url: https://github.com/lycantropos/reprit + +extra: + recipe-maintainers: + - bretttully + - lycantropos diff --git a/recipes/wagyu/meta.yaml b/recipes/wagyu/meta.yaml new file mode 100644 index 0000000000000..fd27ce716bc5d --- /dev/null +++ b/recipes/wagyu/meta.yaml @@ -0,0 +1,44 @@ +{% set name = "wagyu" %} +{% set version = "0.2.2" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: d81019db773c33671db0b9422b5f2db6f8cb90d90eb6f44d81ec21aea4a6a76c + +build: + number: 0 + script: "{{ PYTHON }} -m pip install . -vv" + +requirements: + build: + - {{ compiler('cxx') }} + host: + - python + - pip + - pybind11 >=2.6.1 + run: + - python + - reprit >=0.3.1 + +test: + imports: + - wagyu + +about: + home: https://github.com/lycantropos/wagyu + license: MIT + license_family: MIT + license_file: LICENSE + summary: 'Python port of mapbox/wagyu library.' + description: 'Python port of mapbox/wagyu library.' + doc_url: https://github.com/lycantropos/wagyu + dev_url: https://github.com/lycantropos/wagyu + +extra: + recipe-maintainers: + - bretttully + - lycantropos