# ----------------------------------------------------------------------------
# Copyright (c) 2016-2023, QIIME 2 development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

from .metadata import (Metadata, MetadataColumn, NumericMetadataColumn,
                       CategoricalMetadataColumn)
from .io import MetadataFileError


__all__ = ['Metadata', 'MetadataColumn', 'NumericMetadataColumn',
           'CategoricalMetadataColumn', 'MetadataFileError']
