Metadata-Version: 2.4
Name: c_four_five_classifier
Version: 0.1.0
Summary: Python implementation of C4.5 decision tree algorithm
Home-page: https://github.com/yourusername/c-four-five-classifier
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pandas>=1.0.0
Requires-Dist: numpy>=1.18.0
Requires-Dist: graphviz>=0.14.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# C4.5 Classifier

[![PyPI Version](https://img.shields.io/pypi/v/c-four-five-classifier.svg)](https://pypi.org/project/c-four-five-classifier/)
[![Python Version](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/)

A Python implementation of the C4.5 decision tree algorithm with pruning support.

## Features

- C4.5 algorithm with gain ratio splitting criterion
- Pre-pruning via minimum samples and gain ratio thresholds
- Tree visualization using Graphviz
- Pandas DataFrame integration

## Installation

```bash
pip install c_four_five_classifier
