Import sub-package in main package

This commit is contained in:
Florent Guiotte 2019-03-07 08:20:29 +01:00
parent 78c0d12d92
commit a75d7088c4
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
doc/_build
doc/source
__pycache__
log/

View File

@ -9,4 +9,7 @@ Utils and production pipelines for processing LiDAR point clouds.
"""
__all__ = ['utils']
__all__ = ['utils', 'io']
from . import utils
from . import io