1Metadata-Version: 1.1
2Name: django-allauth
3Version: 0.41.0
4Summary: Integrated set of Django applications addressing authentication, registration, account management as well as 3rd party (social) account authentication.
5Home-page: http://github.com/pennersr/django-allauth
6Author: Raymond Penners
7Author-email: raymond.penners@intenct.nl
8License: UNKNOWN
9Description: ==========================
10        Welcome to django-allauth!
11        ==========================
12
13        .. image:: https://travis-ci.org/pennersr/django-allauth.svg
14           :target: http://travis-ci.org/pennersr/django-allauth
15
16        .. image:: https://img.shields.io/pypi/v/django-allauth.svg
17           :target: https://pypi.python.org/pypi/django-allauth
18
19        .. image:: https://coveralls.io/repos/pennersr/django-allauth/badge.svg?branch=master
20           :alt: Coverage Status
21           :target: https://coveralls.io/r/pennersr/django-allauth
22
23        .. image:: https://pennersr.github.io/img/bitcoin-badge.svg
24           :target: https://blockchain.info/address/1AJXuBMPHkaDCNX2rwAy34bGgs7hmrePEr
25
26        .. image:: https://img.shields.io/badge/code%20style-pep8-green.svg
27           :target: https://www.python.org/dev/peps/pep-0008/
28
29        .. image:: https://img.shields.io/badge/code_style-standard-brightgreen.svg
30           :target: http://standardjs.com
31
32        .. image:: https://pennersr.github.io/img/emacs-badge.svg
33           :target: https://www.gnu.org/software/emacs/
34
35        Integrated set of Django applications addressing authentication,
36        registration, account management as well as 3rd party (social) account
37        authentication.
38
39        Home page
40          http://www.intenct.nl/projects/django-allauth/
41
42        Source code
43          http://github.com/pennersr/django-allauth
44
45        Mailinglist
46          http://groups.google.com/group/django-allauth
47
48        Documentation
49          https://django-allauth.readthedocs.io/en/latest/
50
51        Stack Overflow
52          http://stackoverflow.com/questions/tagged/django-allauth
53
54        Rationale
55        =========
56
57        Most existing Django apps that address the problem of social
58        authentication focus on just that. You typically need to integrate
59        another app in order to support authentication via a local
60        account.
61
62        This approach separates the worlds of local and social
63        authentication. However, there are common scenarios to be dealt with
64        in both worlds. For example, an e-mail address passed along by an
65        OpenID provider is not guaranteed to be verified. So, before hooking
66        an OpenID account up to a local account the e-mail address must be
67        verified. So, e-mail verification needs to be present in both worlds.
68
69        Integrating both worlds is quite a tedious process. It is definitely
70        not a matter of simply adding one social authentication app, and one
71        local account registration app to your ``INSTALLED_APPS`` list.
72
73        This is the reason this project got started -- to offer a fully
74        integrated authentication app that allows for both local and social
75        authentication, with flows that just work.
76
77
78        Commercial Support
79        ==================
80
81        This project is sponsored by IntenCT_. If you require assistance on
82        your project(s), please contact us: info@intenct.nl.
83
84        .. _IntenCT: http://www.intenct.info
85
86
87        Cross-Selling
88        =============
89
90        If you like this, you may also like:
91
92        - django-trackstats: https://github.com/pennersr/django-trackstats
93        - netwell: https://github.com/pennersr/netwell
94
95Keywords: django auth account social openid twitter facebook oauth registration
96Platform: UNKNOWN
97Classifier: Development Status :: 4 - Beta
98Classifier: Intended Audience :: Developers
99Classifier: Topic :: Software Development :: Libraries :: Python Modules
100Classifier: Environment :: Web Environment
101Classifier: Topic :: Internet
102Classifier: License :: OSI Approved :: MIT License
103Classifier: Operating System :: OS Independent
104Classifier: Programming Language :: Python
105Classifier: Programming Language :: Python :: 3
106Classifier: Programming Language :: Python :: 3.5
107Classifier: Programming Language :: Python :: 3.6
108Classifier: Programming Language :: Python :: 3.7
109Classifier: Programming Language :: Python :: 3.8
110Classifier: Framework :: Django
111Classifier: Framework :: Django :: 2.0
112Classifier: Framework :: Django :: 2.1
113Classifier: Framework :: Django :: 2.2
114Classifier: Framework :: Django :: 3.0
115