Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding faster-coco-eval #28684

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions recipes/faster-coco-eval/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "faster-coco-eval" %}
{% set version = "1.6.5" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/faster_coco_eval-{{ version }}.tar.gz
sha256: 51c20207ebbd7a9fbf16113ffe39749355e0888c5ed274f2771da71ee347cb8f

build:
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
build:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
# this is necessary for all compiled recipes
- {{ stdlib('c') }}
host:
- python
- setuptools >=42
- wheel
- python-build
- oldest-supported-numpy # [py<39]
- cython
- pybind11 >=2.12.0
- pip
run:
- python
- plotly
- pandas
- pillow
- {{ pin_compatible('numpy') }}

test:
imports:
- faster_coco_eval
commands:
- pip check
requires:
- pip

about:
home: https://github.com/MiXaiLL76/faster_coco_eval
summary: Faster interpretation of the original COCOEval
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- MiXaiLL76
Loading