Metadata-Version: 2.1
Name: ft-fibonacci
Version: 1.0.0
Summary: A simple test package to calculate Fibonacci Sequence through a recursive approach
Home-page: https://github.com/fahadtaimur
Author: Fahad Taimur
Author-email: fahadtaimur@protonmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Fibonacci Wrapper in Python
> Performs fibonacci sequence calculation 
---

## Installation
This fibonacci sequence wrapper can be installed using python pip. 

```python
pip install ft_fibonacci
```

---

## Guide
```python
from app import fibonacci

result = fibonacci(10)
print(result)
```

