Metadata-Version: 1.1
Name: django-mfa
Version: 0.0.10
Summary: A Django deployment package for all hosting types.
Home-page: https://github.com/MicroPyramid/django-mfa
Author: Micropyramid
Author-email: hello@micropyramid.com
License: UNKNOWN
Description: django-mfa
        ==========
        
        .. image:: https://readthedocs.org/projects/django-mfa/badge/?version=latest
           :target: http://django-mfa.readthedocs.io/en/latest/
           :alt: Documentation Status
           
        .. image:: https://travis-ci.org/MicroPyramid/django-mfa.svg?branch=master
           :target: https://travis-ci.org/MicroPyramid/django-mfa
        
        .. image:: https://img.shields.io/pypi/dm/django-mfa.svg
            :target: https://pypi.python.org/pypi/django-mfa
            :alt: Downloads
        
        .. image:: https://img.shields.io/pypi/v/django-mfa.svg
            :target: https://pypi.python.org/pypi/django-mfa
            :alt: Latest Release
            
        .. image:: https://coveralls.io/repos/github/MicroPyramid/django-mfa/badge.svg?branch=master
           :target: https://coveralls.io/github/MicroPyramid/django-mfa?branch=master
        
        .. image:: https://landscape.io/github/MicroPyramid/django-mfa/master/landscape.svg?style=flat
           :target: https://landscape.io/github/MicroPyramid/django-mfa/master
           :alt: Code Health
        
        .. image:: https://img.shields.io/github/license/micropyramid/django-mfa.svg
            :target: https://pypi.python.org/pypi/django-mfa/
        
        
        Django-mfa is a simple Django app to for providing MFA (Multi-Factor Authentication).
        
        **Documentation** is `avaliable online
        <http://django-mfa.readthedocs.org/>`_, or in the docs
        directory of the project.
        
        Quick start
        -----------
        
        Installation
        ~~~~~~~~~~~~
        
        The Git repository can be cloned with this command::
        
            git clone https://github.com/MicroPyramid/django-mfa
        
        The ``django_mfa`` package, included in the distribution, should be
        placed on the ``PYTHONPATH``.
        
        Otherwise you can just ``easy_install -Z django-mfa``
        or ``pip install django-mfa``.
        
        Settings
        ~~~~~~~~
        
        1. Add app name in settings.py::
        
            INSTALLED_APPS = [
               '..................',
               'django_mfa',
               '..................'
            ]
        
        2. Add 'django_mfa.middleware.MfaMiddleware' to your project middlewares::
        
            MIDDLEWARE = [
               '....................................',
               'django_mfa.middleware.MfaMiddleware',
               '....................................',
            ]
        
        
        Urls
        ~~~~
        
        Add the following to your root urls.py file.
        
        .. code:: django
        
            urlpatterns = [
                ...
        
                url(r'^settings/', include('django_mfa.urls', namespace="mfa")),
            ]
        
        
        Done. With these settings you have now, you will get the MFA features.
        
        You can try it by hosting on your own or deploy to Heroku with a button click.
        
        .. image:: https://www.herokucdn.com/deploy/button.svg
           :target: https://heroku.com/deploy?template=https://github.com/MicroPyramid/django-mfa.git
        
        Visit our Django web development page `Here`_
        
        We welcome your feedback and support, raise `github ticket`_ if you want to report a bug. Need new features? `Contact us here`_
        
        .. _contact us here: https://micropyramid.com/contact-us/
        .. _Here: https://micropyramid.com/django-development-services/
        .. _github ticket: https://github.com/MicroPyramid/django-mfa/issues
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
