climategan / climategan /__init__.py
NimaBoscarino's picture
copy the climategan repo in here
6e601ed
from importlib import import_module
from pathlib import Path
__all__ = [
import_module(f".{f.stem}", __package__)
for f in Path(__file__).parent.glob("*.py")
if "__" not in f.stem
]
del import_module, Path