Metadata-Version: 2.1
Name: django_tgb_basics
Version: 0.2.12
Summary: Basic fundamentals features for Django projects.
Home-page: https://github.com/tonybolanyo/django-tgb-basics
Author: Tony G. Bolaño
Author-email: tonybolanyo@gmail.com
License: MIT
Description: # django_tgb_basics
        
        This is a collection of useful (basic) features that I usually use in my
        Django Projects. I realize that I never use every feature in other libraries,
        so I decide to put together the most important ones to easilly reuse.
        
        # Installation and setup
        
        Install with your python package manager as usually you do.
        To install with pip:
        
        ```
        pip install django_tgb_basics
        ```
        
        Once the package is installed you should edit your `settings.py` file
        and add (or modify) the `AUTHENTICATION_BACKENDS` to use the `EmailAuthBackend`.
        It's not necessary add to installed apps if you only need the auth backend.
        
        ```
        AUTHENTICATION_BACKENDS = [
            'django_tgb_basics.backends.EmailAuthBackend',
            # Other authentications backends
        ]
        ```
        
        But if you need another features like `MultiSerializerViewSet`, you need to
        add `django_tgb_basics` to `INSTALLED_APPS` in the `settings.py` file of your
        project.
        
        ```
        INSTALLED_APPS = [
            ...
            'django_tgb_basics',
            ...
        ]
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
