__init__.py 280 B

12345678910
  1. __all__ = ["APP_NAME", "VERSION"]
  2. APP_NAME = "djdt"
  3. # Do not use pkg_resources to find the version but set it here directly!
  4. # see issue #1446
  5. VERSION = "4.1.0"
  6. # Code that discovers files or modules in INSTALLED_APPS imports this module.
  7. urls = "debug_toolbar.urls", APP_NAME