Source code for ccdproc

# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
The ccdproc package is a collection of code that will be helpful in basic CCD
processing. These steps will allow reduction of basic CCD data as either a
stand-alone processing or as part of a pipeline.
"""
try:
    from ._version import version as __version__
except ImportError:
    __version__ = ""

# set up namespace
from .core import *  # noqa
from .ccddata import *  # noqa
from .combiner import *  # noqa
from .image_collection import *  # noqa
from astropy import config as _config


[docs] class Conf(_config.ConfigNamespace): """Configuration parameters for ccdproc.""" auto_logging = _config.ConfigItem( True, "Whether to automatically log operations to metadata" "If set to False, there is no need to specify add_keyword=False" "when calling processing operations.", )
conf = Conf() del _config