Source code for shoop.core

# -*- coding: utf-8 -*-
# This file is part of Shoop.
#
# Copyright (c) 2012-2016, Shoop Ltd. All rights reserved.
#
# This source code is licensed under the AGPLv3 license found in the
# LICENSE file in the root directory of this source tree.
from shoop.apps import AppConfig


[docs]class ShoopCoreAppConfig(AppConfig): name = "shoop.core" verbose_name = "Shoop Core" label = "shoop" # Use "shoop" as app_label instead of "core" required_installed_apps = ( "django.contrib.auth", "django.contrib.contenttypes", "easy_thumbnails", "filer", ) provides = { "api_populator": [ "shoop.core.api:populate_core_api" ], "pricing_module": [ "shoop.core.pricing.default_pricing:DefaultPricingModule" ], }
default_app_config = "shoop.core.ShoopCoreAppConfig"