Metadata-Version: 1.1
Name: envconfig
Version: 0.1.0
Summary: Parse config options from the OS environment.
Home-page: https://github.com/dbader/envconfig
Author: Daniel Bader
Author-email: mail@dbader.org
License: The MIT License (MIT)

Copyright (c) 2013 Daniel Bader (http://dbader.org)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Download-URL: https://github.com/dbader/envconfig/tarball/0.1.0
Description: envconfig
        =========
        
        
        .. image:: https://api.travis-ci.org/dbader/envconfig.png
                :target: https://travis-ci.org/dbader/envconfig
        
        .. image:: https://coveralls.io/repos/dbader/envconfig/badge.png
                :target: https://coveralls.io/r/dbader/envconfig
        
        .. image:: https://pypip.in/v/envconfig/badge.png
                :target: https://pypi.python.org/pypi/envconfig
        
        
        Features
        --------
        - todo
        
        Usage
        -----
        
        .. code-block:: bash
        
            $ pip install envconfig
        
        .. code-block:: python
        
            import envconfig
        
            boolopt = envconfig.bool("BOOL_OPTION")
            intopt = envconfig.int("INTEGER_OPTION")
            stropt = envconfig.int("STRING_OPTION")
            listopt = envconfig.list("LIST_OPTION")
        
        Meta
        ----
        
        Daniel Bader – `@dbader_org <https://twitter.com/dbader_org>`_ – mail@dbader.org
        
        Distributed under the MIT license. See ``LICENSE.txt`` for more information.
        
        https://github.com/dbader/envconfig
        
        
        .. :changelog:
        
        History
        -------
        
        0.1.0 (2013-05-27)
        ++++++++++++++++++
        
        - Initial release
        
Keywords: config,environment,12factor
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Natural Language :: English
