Metadata-Version: 2.1
Name: AV-investimentos
Version: 0.5
Summary: Uma biblioteca para cálculos de investimentos.
Home-page: https://github.com/Antonio-AV/AV_investimentos
Author: Antonio Victor M Fonseca
Author-email: anvimefo0123@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# AV Investimentos

Uma biblioteca Python para cálculos de investimentos.

## Instalação

Você pode instalar a biblioteca via pip:

```bash
pip install AV_investimentos
```

## Uso

```python
from investimentos import calcular_retorno_investimento, calcular_juros_compostos

valor_inicial = 10000
valor_final = 15000

retorno = calcular_retorno_investimento(valor_inicial, valor_final)
print(f"Retorno do investimento: {retorno:.2f}%")

valor_final_juros = calcular_juros_compostos(valor_inicial, 6, 5)
print(f"Valor final com juros compostos: R${valor_final_juros:.2f}")
```
