Metadata-Version: 1.1
Name: barbara
Version: 0.3
Summary: Environment variable management
Home-page: http://github.com/mverteuil/barbara
Author: Matthew de Verteuil
Author-email: mverteuil@github.com
License: GNU General Public License v3.0
Description: barbara
        =======
        
        Environment variable management
        
        Installation
        ------------
        
        .. code:: shell
        
            $ pip install barbara
        
        Usage
        -----
        
        1. Create an ``.env.template`` for your project 
        
        .. code:: shell
        
           DATABASE_HOST=127.0.0.1       
           COMPLEX_KEY=[username:user]:[password:pass]@$DATABASE_HOST
           
        2. Run ``barb`` and you'll be prompted for the values
        
        .. code:: bash
        
           $ barb
           .env does not exist. Create it? [y/N]: y
           Creating environment: .env      
           Skip Existing: True      
           COMPLEX_KEY:      
           username [user]:      
           password [pass]: wordpass      
           DATABASE_HOST [127.0.0.1]:      
           Environment ready!
        
        3. Inspect the generated file, see your values!
        
        .. code:: bash
        
           $ cat .env
           COMPLEX_KEY=user:wordpass@$DATABASE_HOST      
           DATABASE_HOST=127.0.0.1
        
        Subvariables
        ------------
        
        *Subvariables* work by using the ``[variable_name:variable_default]`` syntax within an ``.env`` template. You
        can use as many as you wish in a row, but they cannot be nested.
        
        Why ``barbara``?
        ----------------
        
        Because `Barbara Liskov <https://en.wikipedia.org/wiki/Barbara_Liskov>`__ created the `Liskov Substituion
        Principle <https://en.wikipedia.org/wiki/Liskov_substitution_principle>`__ and is a prolific contributor to
        computer science and software engineering. Barbara is one of the Newton's metaphorical giants that enables us
        to see further. I humbly dedicate my project to her and her contributions and offer this project to its
        consumers with a license befitting that dedication.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: System
Classifier: Topic :: Terminals
