Metadata-Version: 1.0
Name: Franges
Version: 0.1.0
Summary: Franges adds support for floating point and fixed precision (Decimal) range generator functions.
Home-page: http://code.google.com/p/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
        =====
        
            #!/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
        
Keywords: example documentation tutorial
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
