Metadata-Version: 2.4
Name: investpy-igorpestana
Version: 0.1.0
Summary: Uma biblioteca para cálculos de investimentos.
Home-page: https://github.com/igorspestana/investpy-igorpestana
Author: Igor S Pestana
Author-email: igorspestana@gmail.com
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
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest>=7.0; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: provides-extra
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 investpy-igorpestana
```

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

Para ver uma demonstração rápida, execute:

```bash
python -m investimentos
```

## Estrutura de Pastas

```
investpy-igorpestana/
│
├── investimentos/
│   ├── __init__.py
│   ├── __main__.py
│   └── investimentos.py
│
├── examples/
│   └── demo.py
│
├── tests/
│   └── test_investimentos.py
│
├── setup.py
├── pyproject.toml
├── README.md
└── LICENSE
```
