Metadata-Version: 2.1
Name: fibo-sum
Version: 1.0.1
Summary: Returns the sum of N numbers of the fibonacci sequence
Home-page: https://github.com/LewAndrade/fibo-sum
Author: Lew Andrade
Author-email: andrade.lew@gmail.com
License: MIT
Download-URL: https://github.com/LewAndrade/fibo-sum/archive/refs/tags/1.0.tar.gz
Project-URL: Bug Tracker, https://github.com/LewAndrade/fibo-sum/issues
Description: # Fibo Sum
        
        ## A Python package with the sole function of giving you the sum of N fibonacci terms.
        
        ### _Beware the golden ration complexity_
        
        ## Install
        
        ```shell
        pip install fibo-sum
        ```    
        
        ## Usage
        
        ```python
        from fibo_sum.fibo_sum import fibo_sum
        
        print(fibo_sum(13))
        ```
Keywords: Fibonacci,Sum
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
