13 lines
265 B
Python
13 lines
265 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from os.path import dirname, basename, isfile
|
|
from glob import glob
|
|
|
|
__all__ = [ ]
|
|
|
|
for f in glob(dirname(__file__) + "/*.py"):
|
|
if not basename(f).startswith('_') and isfile(f):
|
|
__all__.append(basename(f)[:-3])
|
|
|
|
from . import *
|