Metadata-Version: 1.1
Name: python-configurator
Version: 0.2
Summary: Python module for reading configuration files in different formats
Home-page: https://github.com/idxxx23/configurator
Author: GNU Knight
Author-email: idxxx23@gmail.com
License: UNKNOWN
Description: ============
        configurator
        ============
        
        Usage
        =====
        
        .. code:: python
        
            #!/usr/bin/env python3
            
            key = 'default'
            folder = '/home/pm/projects/foo/sqlite/'
            connector = 'sqlite'
            target = '/home/pm/projects/foo/foo.db'
            
            if __name__ == '__main__':
                from configurator.convertor import convertor
                convertor(__file__, debug=True)
                convertor(__file__, 'python', 'pickle', debug=True)
                convertor(__file__, 'python', 'python', debug=True)
        
        Changelog
        =========
        
        0.2 (2015 Jan 16)
        
        * create 'configurator' package
        * fix: json.dump
        * add testing files
        
        0.1 (2014 Jan 21)
        
        * initial release with support for: json, pickle and python
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
