Metadata-Version: 2.4
Name: textutils-rwcrp
Version: 0.1.0
Summary: A simple Python text utility library
Author-email: VanshShah <vanshshah@myyahoo.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/VanshMShah/PypiProject
Project-URL: Issues, https://github.com/VanshMShah/PypiProject/issues
Keywords: text,string,utils
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# textutils-rwcrp

A simple Python package for basic text operations.

## Installation

```bash
pip install textutils-rwcrp
```

## Usage Example

```python
from textutils_rwcrp import reverse, word_count, remove_punctuation

print(reverse("hello"))                # olleh
print(word_count("This is great"))     # 3
print(remove_punctuation("Hi, there!"))# Hi there
```

## Features
- Reverse any string
- Count words
- Remove punctuation
