Metadata-Version: 1.1
Name: incore-otp
Version: 1.1
Summary: A Django app for otp model.
Home-page: https://www.example.com/
Author: Incore Team
Author-email: incore@innovaccer.com
License: MIT License  # Example license
Description: =====
        OTP
        =====
        
        Contains otp model
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "otp" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'otp',
            ]
        
        2. In settings.py add 
        
            # Time after which new OTP can be requested after exceeding max incorrect attempts
            OTP_BLOCK_WINDOW_MIN = int(os.environ.get('OTP_BLOCK_WINDOW_MIN', 15))
            # Or add your own time
            
            
            # max wrong attempts allowed for an otp
            OTP_REMAINING_ATTEMPTS = int(os.environ.get('OTP_REMAINING_ATTEMPTS', 5))
            # Or add your attempts
        
        3. Run ``python manage.py migrate`` to create the otp models.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
