Metadata-Version: 2.4
Name: meu_investimento_gigran
Version: 0.4.2
Summary: Uma biblioteca para cálculos de investimentos.
Home-page: https://github.com/gigran/meu_investimento
Author: Giancarlo Rantes
Author-email: grantes@offisys.com.br
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# Meu Investimento

Uma biblioteca Python para cálculos de investimentos.

## Instalação

Você pode instalar a biblioteca via pip:

```bash
pip install meu_investimento
```

## Uso

```python
from investimentos import calcular_retorno_investimento, calcular_juros_compostos

valor_inicial = 1000
valor_final = 1500

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}")
```
