diff --git a/.gitignore b/.gitignore index fe762b6..637a53d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ doc/_build doc/source __pycache__ +log/ diff --git a/idefix/__init__.py b/idefix/__init__.py index 1f9c0d3..3a51d50 100644 --- a/idefix/__init__.py +++ b/idefix/__init__.py @@ -9,4 +9,7 @@ Utils and production pipelines for processing LiDAR point clouds. """ -__all__ = ['utils'] +__all__ = ['utils', 'io'] + +from . import utils +from . import io