Revision 5f6e7795172819d4bd4263d5cad0b7bc7e6e3804 authored by Bryna Hazelton on 31 March 2017, 18:53:38 UTC, committed by Bryna Hazelton on 14 April 2017, 19:13:30 UTC
1 parent e301387
Raw File
__init__.py
"""init file for pyuvdata."""
from .uvbase import *
from .parameter import *
from .uvdata import *
from .utils import *
from .telescopes import *
from .uvfits import *
from .fhd import *
from .miriad import *
from .uvcal import *
from .calfits import *

try:
    from .version import *
    __version__ = version
except ImportError:
    # TODO: Issue a warning using the logging framework
    __version__ = ''
    git_origin = ''
    git_hash = ''
    git_description = ''
    git_branch = ''
back to top