__init__.py 504 B

123456789101112131415161718192021
  1. """
  2. django-browserid
  3. This Source Code Form is subject to the terms of the Mozilla Public
  4. License, v. 2.0. If a copy of the MPL was not distributed with this
  5. file, You can obtain one at http://mozilla.org/MPL/2.0/.
  6. """
  7. __version__ = '2.0.2'
  8. from django_browserid.auth import (
  9. BrowserIDBackend,
  10. LocalBrowserIDBackend
  11. ) # NOQA
  12. from django_browserid.base import (
  13. BrowserIDException,
  14. get_audience,
  15. MockVerifier,
  16. RemoteVerifier,
  17. LocalVerifier,
  18. VerificationResult
  19. ) # NOQA