Metadata-Version: 1.1
Name: django-secure-auth
Version: 1.0.1
Summary: Secure authentication by TOTP, SMS, Codes & Question
Home-page: https://github.com/gotlium/django-secure-auth
Author: GoTLiuM InSPiRiT
Author-email: gotlium@gmail.com
License: GPL v3
Description: Django-Secure-Auth
        ==================
        
        Demo installation:
        ------------------
        
        .. code-block:: bash
        
            $ sudo apt-get install geoip-database-contrib rabbitmq-server
            $ mkvirtualenv django-secure-auth
            $ git clone https://github.com/gotlium/django-secure-auth.git
            $ cd django-secure-auth
            $ pip install -r requirements.txt
            $ python setup.py develop
            $ cd demo
            $ pip install -r requirements.txt
            $ python manage.py syncdb --noinput
            $ python manage.py migrate
        
        
        Open settings:
        
        .. code-block:: bash
        
            $ vim demo/settings.py
        
        
        Replace Twilio credentials in ``AUTH_SMS_BACKEND_AUTH`` to your demo account settings.
        
        Run RabbitMQ server and Celery daemon(or remove 'djcelery' from ``INSTALLED_APPS``):
        
        .. code-block:: bash
        
            $ rabbitmq-server -detached
            $ python manage.py celeryd --loglevel=info >& /dev/null &
        
        
        Run test server:
        
        .. code-block:: bash
        
            $ python manage.py runserver
        
        
        Now you can open http://127.0.0.1:8000/accounts/register/ and register
        new account and setup all available authentication methods.
        
        *Note: activation link will be output on console.*
        
        
        Screenshots
        -----------
        .. image:: /screenshots/login-confirmation.jpg
        .. image:: /screenshots/settings.jpg
        .. image:: /screenshots/two-factor-configuration.jpg
        .. image:: /screenshots/sms-settings.jpg
        
        
        .. image:: https://d2weczhvl823v0.cloudfront.net/gotlium/django-secure-auth/trend.png
           :alt: Bitdeli badge
           :target: https://bitdeli.com/free
        
Keywords: django secure auth totp sms codes question
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
