15 lines
302 B
Python
15 lines
302 B
Python
#!/usr/bin/env python
|
|
# file __init__.py
|
|
# author Florent Guiotte <florent.guiotte@uhb.fr>
|
|
# version 0.0
|
|
# date 28 févr. 2019
|
|
"""Idefix Module
|
|
|
|
Utils and production pipelines for processing LiDAR point clouds.
|
|
|
|
"""
|
|
|
|
__all__ = ['utils', 'io', 'vxl', 'helpers']
|
|
|
|
from . import utils, io, vxl, helpers
|