Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 413B

1234567891011121314151617
  1. from __future__ import absolute_import, unicode_literals
  2. __all__ = ['VERSION']
  3. try:
  4. import pkg_resources
  5. VERSION = pkg_resources.get_distribution('django-debug-toolbar').version
  6. except Exception:
  7. VERSION = 'unknown'
  8. # Code that discovers files or modules in INSTALLED_APPS imports this module.
  9. urls = 'debug_toolbar.toolbar', 'djdt'
  10. default_app_config = 'debug_toolbar.apps.DebugToolbarConfig'