Skip to content

Commit

Permalink
Merge pull request conda-forge#15048 from janjagusch/add-mlinsights-r…
Browse files Browse the repository at this point in the history
…ecipe

add mlinsights recipe
  • Loading branch information
xhochy authored May 28, 2021
2 parents 104ec07 + abb9af5 commit 7555466
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions recipes/mlinsights/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "mlinsights" %}
{% set version = "0.3.543" %}


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

source:
url: https://github.com/sdpython/mlinsights/archive/refs/tags/v540.tar.gz # Unfortunately the PyPI releases don't contain a license file and the GitHub tags don't match the PyPI releases
sha256: f5b4c9a71bfeef17954646dc58827eb50a59253e6bc99a398227b2a421e49727

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

requirements:
build:
- {{ compiler('c') }}
host:
- cython
- pip
- pyquickhelper
- python
- scikit-learn
- scipy
run:
- cython
- matplotlib-base
- numpy >=1.16
- pandas
- pandas-streaming
- python
- scikit-learn >=0.22.1
- scipy

test:
imports:
- mlinsights
- mlinsights.helpers
commands:
- pip check
requires:
- pip

about:
home: http://www.xavierdupre.fr/app/mlinsights/helpsphinx/index.html
summary: Extends scikit-learn with a couple of new models, transformers, metrics, plotting.
license: MIT
license_file: LICENSE.txt

extra:
recipe-maintainers:
- janjagusch

0 comments on commit 7555466

Please sign in to comment.