Metadata-Version: 1.1
Name: uwsgi-env
Version: 0.1.0
Summary: Automatically populate env with UWSGI_ variables and run uwsgi
Home-page: https://github.com/night-crawler/uwsgi-env
Author: night-crawler
Author-email: lilo.panic@gmail.com
License: MIT
Description: Installation
        ------------
        
        .. code:: bash
        
            pip install -e git+https://github.com/night-crawler/uwsgi-env.git#egg=uwsgi-env
                # OR
            pip install uwsgi-env
        
        Usage
        ~~~~~
        
        .. code:: python
        
            @manager.option('-h', '--host', dest='host')
            @manager.option('-p', '--port', dest='port')
            def uwsgi(host=None, port=None,):
                from uwsgi_env.utils import uwsgi as _uwsgi
                return _uwsgi(host=host, port=port, project='my_project')
        
        Original by @unbit,
        `django-uwsgi <https://github.com/unbit/django-uwsgi>`__
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
Requires: uwsgi
