Metadata-Version: 2.4
Name: errorbuddy
Version: 0.2.0
Summary: Human-friendly Python error explanations with smart hints and CLI support
Author: Hardik Dhingra
License: MIT
Keywords: python,errors,debugging,cli,developer-tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: colorama

Versioning Strategy
	•	0.1.0 → First public release
	•	0.2.0 → More errors added
	•	1.0.0 → Stable + AI support

## CLI Usage 🚀
Run any Python file and get human-readable errors:

```bash

# Structure

easyerrors myfile.py

errorbuddy/
│
├── errorbuddy/
│   ├── init.py
│   ├── explainer.py
│   ├── rules.py
│   └── cli.py   
│
├── tests/
│   └── test_basic.py
│
├── pyproject.toml
├── README.md

#  — Build Package

```bash
pip install build twine
python -m build

# users have to run 
pip install errorbuddy
errorbuddy file.py
