idefix/idefix/__init__.py

15 lines
282 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']
from . import utils, io, vxl