Metadata-Version: 2.4
Name: tint-zaqar
Version: 0.0.1b0
Summary: A lightweight Python library that adds color and style to your terminal output.
Author-email: zaqar <hakobyanzaqar3@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/tint
Project-URL: Repository, https://github.com/yourusername/tint
Keywords: color,terminal,ansi,cli,styling
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Terminals
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Tint

> A lightweight Python library that adds **color** and **style** to your terminal output.
> Clean syntax. Vivid visuals. No clutter - just pure expression.

## Install

```bash
pip install tint-zaqar
```
## Usage
```python
from tint import red, green, blue, bold

print(red("Error!"))
print(green("Success!"))
print(bold("Important message"))
```
