Metadata-Version: 2.2
Name: fuzzytree
Version: 0.2.0
Summary: A scikit-learn compatible implementation of fuzzy decision tree estimator.
Home-page: https://balins.github.io/fuzzytree
Download-URL: https://pypi.org/project/fuzzytree
Author: Jakub Baliński
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/balins/fuzzytree/issues
Project-URL: Documentation, https://balins.github.io/fuzzytree
Project-URL: Source Code, https://github.com/balins/fuzzytree
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scikit-learn
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-gallery; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
Requires-Dist: numpydoc; extra == "docs"
Requires-Dist: matplotlib; extra == "docs"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: license
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

.. -*- mode: rst -*-

fuzzytree: fuzzy decision tree estimator
========================================

.. _scikit-learn: https://scikit-learn.org
.. _documentation: https://balins.github.io/fuzzytree

**fuzzytree** is a Python module implementing fuzzy (a.k.a. soft)
decision trees. Its API is fully compatible with scikit-learn_.

Refer to the documentation_ to find usage guide and some examples.

Requirements
    * scikit-learn >= 0.24.0
    * numpy >= 13.3.3
