From 70164ff978a29f7d4263abf2b79a6b72bfeb4557 Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Mon, 8 Jan 2018 21:12:01 -0500 Subject: [PATCH] Update setup.py with few Django App Plugins --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.py b/setup.py index c625903af8..cf594d82d5 100644 --- a/setup.py +++ b/setup.py @@ -63,5 +63,16 @@ setup( "openedx.ace.policy": [ "bulk_email_optout = lms.djangoapps.bulk_email.policies:CourseEmailOptout" ], + "lms.djangoapp": [ + "grades = lms.djangoapps.grades.apps:GradesConfig", + "ace_common = openedx.core.djangoapps.ace_common.apps:AceCommonConfig", + "schedules = openedx.core.djangoapps.schedules.apps:SchedulesConfig", + "theming = openedx.core.djangoapps.theming.apps:ThemingConfig", + ], + "cms.djangoapp": [ + "ace_common = openedx.core.djangoapps.ace_common.apps:AceCommonConfig", + "schedules = openedx.core.djangoapps.schedules.apps:SchedulesConfig", + "theming = openedx.core.djangoapps.theming.apps:ThemingConfig", + ], } )