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", + ], } )