Metadata-Version: 2.4
Name: textkit-santosh12ac
Version: 0.2.0
Summary: A tiny example text utility package
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/textkit
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# textkit

A tiny example text utility package.

## Install

```bash
pip install textkit-yourname
```

## Usage

```python
from textkit import shout, reverse, word_count

shout("hello")        # "HELLO!"
reverse("hello")      # "olleh"
word_count("hi there") # 2
```
