config.py 373 B

12345678910
  1. from django.apps import AppConfig
  2. class PythonSocialAuthConfig(AppConfig):
  3. # Full Python path to the application eg. 'django.contrib.admin'.
  4. name = 'social_django'
  5. # Last component of the Python path to the application eg. 'admin'.
  6. label = 'social_django'
  7. # Human-readable name for the application eg. "Admin".
  8. verbose_name = 'Python Social Auth'