Metadata-Version: 2.3
Name: find-replace-cli
Version: 0.1.0
Summary: A short description of the project
Author: Antonio Pisani
Author-email: antonio.pisani@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Project-URL: Documentation, https://find-and-replace.readthedocs.io/
Project-URL: Issue Tracker, https://github.com/apisani1/find-and-replace/issues
Project-URL: Release Notes, https://github.com/apisani1/find-and-replace/releases
Project-URL: Source Code, https://github.com/apisani1/find-and-replace
Description-Content-Type: text/markdown

# find-and-replace

A short description of the project

## Overview

This documentation covers the find-and-replace library.

## Installation

```bash
pip install find-and-replace
```

Or, if you use Poetry:

```bash
poetry add find-and-replace
```

## Quick Start

```python
from find_and_replace import Example

# Initialize
example = Example()

# Use the library
result = example.run()
print(result)
```

