Source code for swh.lister.pypi

# Copyright (C) 2019-2021 the Software Heritage developers
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information


[docs] def register(): from .lister import PyPILister return { "lister": PyPILister, "task_modules": ["%s.tasks" % __name__], }