Metadata-Version: 1.1
Name: djaccount
Version: 0.0.5a1
Summary: Django account manager
Home-page: https://gitlab.com/uda/djaccount
Author: Yehuda Deutsch
Author-email: yeh@uda.co.il
License: MIT
Description-Content-Type: UNKNOWN
Description: # Django Account
        
        Account app for the Django framework provides an email based user object
        
        ## Simple usage
        
        1. Install by running `pip install djaccount`
        
        2. Add the following settings to your `settings.py` file
            ```python
            INSTALLED_APPS = [
                # contrib and other apps here
                'account',
                # some more custom apps here
            ]
            AUTH_USER_MODEL = 'account.Account'
            LOGIN_URL = '/account/login/'
            LOGIN_REDIRECT_URL = '/account/'
            LOGOUT_REDIRECT_URL = '/'
            ```
        
        3. Add the account URLs to your `urls.py` file
            ```python
            urlpatterns = [
                url(r'^account/', include('account.urls', namespace='account')),
            ]
            ```
        
        4. Run `django-admin migrate`
        
        ## Integrated usage
        
        **TBD**
        
        ## License
        
        See [LICENSE](LICENSE)
        
        Some of the work was made as part of my job at [Sync.me](https://sync.me)
        
Keywords: django account
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
