Metadata-Version: 1.1
Name: plugs-auth
Version: 0.2.3
Summary: Reusable Authentication
Home-page: https://github.com/solocompt/plugs-auth
Author: Solo
Author-email: geral@solo.com.pt
License: MIT
Description: =============================
        Plugs Auth
        =============================
        
        .. image:: https://badge.fury.io/py/plugs-auth.png
            :target: https://badge.fury.io/py/plugs-auth
        
        .. image:: https://travis-ci.org/ricardolobo/plugs-auth.png?branch=master
            :target: https://travis-ci.org/ricardolobo/plugs-auth
        
        Your project description goes here
        
        Documentation
        -------------
        
        The full documentation is at https://plugs-auth.readthedocs.io.
        
        Quickstart
        ----------
        
        Install Plugs Auth::
        
            pip install plugs-auth
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'plugs_auth.apps.PlugsAuthConfig',
                ...
            )
        
        Add Plugs Auth's URL patterns:
        
        .. code-block:: python
        
            from plugs_auth import urls as plugs_auth_urls
        
        
            urlpatterns = [
                ...
                url(r'^', include(plugs_auth_urls)),
                ...
            ]
        
        Features
        --------
        
        * TODO
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2017-01-26)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: plugs-auth
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
