Metadata-Version: 1.1
Name: py-config
Version: 1.0.2
Summary: Configuration manager for python projects
Home-page: http://github.com/jonmorehouse/py-config
Author: Jon Morehouse
Author-email: morehousej09@gmail.com
License: MIT
Description: Python Utilities
        ================
        
        Config Class
        ------------
        
        -  a class for managing project variables based upon bash env variables
        -  recommended to be used with .export files `Jon Morehouse
           Scripts <https://github.com/jonmorehouse/scripts>`__
        
        Sample Usage
        ------------
        
        ::
        
            from config import Config
        
            # load variables from env
            Config.load_from_list(["PATH", "PWD", "ENV"])
        
            # load an exports file of the following format
            # ENV=PRODUCTION
            # MODULE=TEST
            Config.load_from_path(".test.exports")
        
            # load yaml/json file
            Config.load_from_path("config.json")
            Config.load_from_path("config.yml")
        
            # access config
            print Config.PATH 
        
        
        
Keywords: configuration,management
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
