model-converter-python/d3/model/formats/__init__.py

5 lines
165 B
Python
Raw Normal View History

2016-12-02 15:52:01 +01:00
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*.py")
__all__ = [ basename(f)[:-3] for f in modules if isfile(f)]