diff --git a/pyproject.toml b/pyproject.toml index 0b72676081..e461f30a7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,3 +48,6 @@ videoalpha = "xmodule.video_block:VideoBlock" videodev = "xmodule.template_block:TranslateCustomTagBlock" word_cloud = "xmodule.word_cloud_block:WordCloudBlock" wrapper = "xmodule.wrapper_block:WrapperBlock" + +[project.entry-points."xblock_asides.v1"] +tagging_aside = "cms.lib.xblock.tagging:StructuredTagsAside" diff --git a/setup.py b/setup.py index a067dbdc06..327158177b 100644 --- a/setup.py +++ b/setup.py @@ -4,11 +4,6 @@ Setup script for the Open edX package. from setuptools import setup -XBLOCKS_ASIDES = [ - 'tagging_aside = cms.lib.xblock.tagging:StructuredTagsAside', -] - - setup( entry_points={ "openedx.course_tab": [ @@ -136,7 +131,6 @@ setup( 'enrollment_track = xmodule.partitions.enrollment_track_partition_generator:create_enrollment_track_partition', # lint-amnesty, pylint: disable=line-too-long 'team = openedx.core.lib.teams_config:create_team_set_partition', ], - 'xblock_asides.v1': XBLOCKS_ASIDES, 'console_scripts': [ 'xmodule_assets = xmodule.static_content:main', ],