"""Auto import all packagers.""" import glob from os import path modules = glob.glob(path.join(path.dirname(__file__), '*.py')) __all__ = [ path.basename(f)[:-3] for f in modules if path.isfile(f) and not f.endswith('__init__.py') ]