Metadata-Version: 2.1
Name: averag_mult_three
Version: 0.0.1
Summary: Testando a criação de pacote em Python
Home-page: https://github.com/dimitrimarinho/averag_mult_three
Author: Dimitri Marinho
Author-email: dimitri.santana.marinho@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# averag_mult_three

This package was created as a learning exercise for creating packages in Python through the Digital Innovation One Bootcamp: "Cognizant Cloud Data Engineer #2".

The exercise module was taught by Karina Kato under the name "Uncomplicating the creation of image processing packages in Python".

The package averag_mult_three is used to:
	- Calculate the average of three numbers
	- Calculate the multiplication of three numbers

## Installation

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

```bash
pip install averag_mult_three
```

## Usage

To calculate the average of three numbers:
```python
from averag_mult_three.average_three_numb import average_calculation
average_calculation.calc_average_three()
```

To calculate the multiplication of three numbers:
```python
from averag_mult_three.multiplication_three_numb import multiplication_calculation
multiplication_calculation.calc_multipl_three()
```

## Author
Dimitri Marinho

## License
[MIT](https://choosealicense.com/licenses/mit/)

