Metadata-Version: 2.1
Name: gecoauth
Version: 0.1
Summary: A personal Django app that extends django-rest-auth.
Home-page: UNKNOWN
Author: Plutone11011
Author-email: lorenzo.borelli@gecosistema.com
License: BSD-3-Clause  # Example license
Description: =====
        gecoauth
        =====
        
        gecoauth is a Django app that extends django-rest-auth, providing the same endpoints
        but also adding some models and new functionality.
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "gecoauth" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'gecoauth',
            ]
        
        2. Include the GecoAuth URLconf in your project urls.py like this::
        
            path('gecoauth/', include('gecoauth.urls')),
        
        3. Run ``python manage.py migrate`` to create the gecoauth models.
        
        4. Start the development server and visit http://127.0.0.1:8000/gecoauth/rest-auth 
        and http://127.0.0.1:8000/gecoauth/rest-auth-registration to use the app (see django-rest-auth
        for the real endpoints)
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
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
Requires-Python: >=3.6
Description-Content-Type: text/markdown
