-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13283 from bretttully/wagyu
First pass at wagyu python port
- Loading branch information
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |