Update setup.py with few Django App Plugins

This commit is contained in:
Nimisha Asthagiri
2018-01-08 21:12:01 -05:00
parent 7490cd93ab
commit 70164ff978

View File

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