diff --git a/recipes/pdpbox/LICENSE.txt b/recipes/pdpbox/LICENSE.txt new file mode 100644 index 0000000000000..e26136d117471 --- /dev/null +++ b/recipes/pdpbox/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 chakki + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/recipes/pdpbox/meta.yaml b/recipes/pdpbox/meta.yaml new file mode 100644 index 0000000000000..bf5aca4d90ea3 --- /dev/null +++ b/recipes/pdpbox/meta.yaml @@ -0,0 +1,44 @@ +{% set name = "PDPbox" %} +{% set version = "0.2.0" %} + +package: + name: "{{ name|lower }}" + version: "{{ version }}" + +source: + url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" + sha256: "2eae5a20004657f48ddd5b00f2fb74dd54f9de891c25ec7935a8fd471f9186f9" + +build: + number: 0 + noarch: python + script: "{{ PYTHON }} -m pip install . -vv " + +requirements: + host: + - pip + - python + run: + - joblib + - matplotlib-base >=2.1.2 + - numpy + - pandas + - psutil + - python + - scikit-learn + - scipy + +test: + imports: + - pdpbox + +about: + home: "https://github.com/SauceCat/PDPbox" + license: "MIT" + license_family: "MIT" + license_file: "LICENSE.txt" + summary: "Python partial dependence plot toolbox" + +extra: + recipe-maintainers: + - xhochy