Metadata-Version: 2.1
Name: calculator_rodrigom
Version: 0.0.1
Summary: A calculator
Home-page: https://github.com/rodrigomacarini/python_language_fundamentals/tree/main/calculator
Author: Rodrigo M.
Author-email: rodrigofmacarini@gmail.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown


---

# calculator

A simple Python package used to perform basic arithmetic operations.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `calculator`:

```bash
pip install calculator
```

## Usage

```python
from calculator import Calculator

calc = Calculator()

# Perform addition
calc.add(5, 3)

# Perform subtraction
calc.subtract(5, 3)

# Perform multiplication
calc.multiply(5, 3)

# Perform division
calc.divide(10, 2)
```

## Author

Rodrigo Macarini

## License

[MIT](https://opensource.org/licenses/MIT)

---
