File: meta.yaml

package info (click to toggle)
python-pycm 4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,476 kB
  • sloc: python: 5,515; sh: 8; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 1,224 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{% set name = "pycm" %}
{% set version = "4.6" %}

package:
    name: {{ name|lower }}
    version: {{ version }}
source:
    git_url: https://github.com/sepandhaghighi/pycm
    git_rev: v{{ version }}
build:
    noarch: python
    number: 0
    script: {{ PYTHON }} -m pip install . -vv
requirements:
    host:
        - pip
        - setuptools
        - python >=3.7
    run:
        - art >=1.8
        - numpy >=1.9.0
        - python >=3.7
about:
    home: https://github.com/sepandhaghighi/pycm
    license: MIT
    license_family: MIT
    summary: Multi-class confusion matrix library in Python
    description: |
        PyCM is a multi-class confusion matrix library written in Python that supports both input data vectors and direct matrix, and a proper tool for post-classification model evaluation that supports most classes and overall statistics parameters. PyCM is the swiss-army knife of confusion matrices, targeted mainly at data scientists that need a broad array of metrics for predictive models and accurate evaluation of a large variety of classifiers.

        Website: https://www.pycm.io

        Repo: https://github.com/sepandhaghighi/pycm
extra:
    recipe-maintainers:
        - sepandhaghighi