Metadata-Version: 2.2
Name: SmartAITool
Version: 0.1.0
Summary: A smart AI tool package
Author-email: Your Name <mohammad.khalili1515@gmail.com>
Project-URL: Homepage, https://github.com/m15kh/SmartAITool
Project-URL: Bug Tracker, https://github.com/m15kh/SmartAITool/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# SmartAITool

A smart AI tool package for Python that provides useful utilities for terminal output formatting and data processing.

## Installation

```bash
pip install SmartAITool
```

## Usage

### Colored Terminal Output

```python
from SmartAITool import core

# Print with colored output
core.cprint("Success message", "green")
core.cprint("Error message", "red")
core.cprint("Warning message", "yellow")
core.cprint("Information message", "blue")
```

## Features

- **Colored Terminal Output**: Easy-to-use colored text printing in terminal
- **Support for 8 Colors**: black, red, green, yellow, blue, magenta, cyan, white
- **Simple API**: Intuitive and straightforward functions

## Development

### Setting up development environment

```bash
# Clone the repository
git clone https://github.com/m15kh/SmartAITool.git
cd SmartAITool

# Install development dependencies
pip install -r requirements-dev.txt

# Install the package in development mode
pip install -e .
```



## License

[MIT](https://choosealicense.com/licenses/mit/)
