Metadata-Version: 1.1
Name: franges
Version: 1.0.1
Summary: Franges adds support for floating point and fixed precision (Decimal) range generator functions.
Home-page: https://github.com/nisanharamati/franges
Author: Nisan Haramati
Author-email: hanisan@gmail.com
License: LGPLv3+
Description: Franges
        ===========
        
        Franges adds support for floating point and fixed precision (Decimal) range generator functions.
        
        Usage
        =====
        
        ```python
        #!/usr/bin/env python
        
        from franges import drange
        from franges import frange
        
        for x in drange(0,2,0.1, precision = 6):
        print(x)
        for x in frange(0,2,0.1):
        print(x)
        
        list(drange(0,1,0.1, 6)) # [0, 0.1, 0.2, ... , 0.9]
        list(frange(1,0,-0.2)) # [1.0, 0.8, 0.6, 0.3999999999999999, 0.19999999999999996]
        list(drange(1,0,-0.2,6)) # [1.0, 0.8, 0.6, 0.4, 0.2]
        ```
            
        Contributors
        ============
        Nisan Haramati       hanisan@gmail.com
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries
