Metadata-Version: 1.0
Name: env.py
Version: 0.2.2
Summary: Easily manage your python application settings for different environments
Home-page: https://github.com/abhinavsingh/env.py
Author: Abhinav Singh
Author-email: mailsforabhinav@gmail.com
License: BSD
Description: env.py
        ======
        
        Easily manage your python application settings for different environments
        
        Usage:
        ------
        
        Consider following file structure somewhere in your python application:
        
        ```
        - app
          - settings.py
          - local_env.py            # required by env.py
          - local_settings.py
          - dev_settings.py
          - prod_settings.py
          - prodstage_settings.py
          - test_settings.py
        ```
        
        What `env.py` does is, it allows you to define different environment custom settings 
        inside files named `$env_settings.py`. Then, inside `local_env.py` define 
        current environment like `ENV='prod'`.
        
        At the top or at the bottom of `settings.py` based upon how you use `env.py`, use as:
        
        `from env import *`
        
        This will configure your application for your current `ENV` custom settings along with common `settings.py`
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: Microsoft
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
