"""-------------------------------------------------------------------------------------
Framework for developing time-series data pipelines that are configurable through yaml
configuration files and custom code hooks and components. Developed with Atmospheric,
Oceanographic, and Renewable Energy domains in mind, but is generally applicable in
other domains as well.
-------------------------------------------------------------------------------------"""
# NOTE: The '*' imports are constrained by the '__all__' property defined by each module
# so we are only importing the methods and classes deemed most important by each module.
from .config.dataset import *
from .config.pipeline import *
from .config.storage import *
from .config.retriever import *
from .config.quality import *
from .config.utils import *
from .io.base import *
from .io.converters import *
from .io.handlers import *
from .io.readers import *
from .io.retrievers import *
from .io.storage import *
from .io.writers import *
from .pipeline.base import *
from .pipeline.pipelines import *
from .qc.base import *
from .qc.checkers import *
from .qc.handlers import *
from .utils import *
from .testing import *
[docs]def get_version() -> str:
from ._version import __version__
return __version__