Raw File
# -*- mode: python; coding: utf-8 -*-
# Copyright (c) 2018 Radio Astronomy Software Group
# Licensed under the 2-clause BSD License

"""init file for pyuvdata.

"""
from __future__ import absolute_import, division, print_function

from .uvdata import *
from .telescopes import *
from .uvcal import *
from .uvbeam import *
from . import version

__version__ = version.version
back to top