Metadata-Version: 2.1
Name: xradio
Version: 0.0.40
Summary: Xarray Radio Astronomy Data IO
Author-email: Jan-Willem Steeb <jsteeb@nrao.edu>
License: BSD 3-Clause License
        
        All works in this repository are copyrighted 2024.  
        For inquiries contact  Associated Universities, Inc., 2650 Park Tower Drive Vienna, VA 22180, USA.
        
        Portions of this repository are copyrighted by the following entities:
        1. AUI/NRAO, ESO, NAOJ, in the framework of the ALMA partnership.
        2. AUI/NRAO in the framework of the ngVLA project.
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this
           list of conditions and the following disclaimer.
        
        2. Redistributions in binary form must reproduce the above copyright notice,
           this list of conditions and the following disclaimer in the documentation
           and/or other materials provided with the distribution.
        
        3. Neither the name of the copyright holder nor the names of its
           contributors may be used to endorse or promote products derived from
           this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        
Requires-Python: <3.13,>=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: astropy
Requires-Dist: dask
Requires-Dist: distributed
Requires-Dist: graphviper
Requires-Dist: toolviper
Requires-Dist: matplotlib
Requires-Dist: numba >=0.57.0
Requires-Dist: numpy
Requires-Dist: prettytable
Requires-Dist: pytest
Requires-Dist: pytest-cov
Requires-Dist: pytest-html
Requires-Dist: s3fs
Requires-Dist: scipy
Requires-Dist: tqdm
Requires-Dist: xarray
Requires-Dist: zarr
Requires-Dist: pyarrow
Requires-Dist: typeguard
Requires-Dist: typing-extensions ; python_version < "3.10"
Requires-Dist: python-casacore >=3.6.1 ; sys_platform != "darwin"
Provides-Extra: docs
Requires-Dist: jupyterlab ; extra == 'docs'
Requires-Dist: ipykernel ; extra == 'docs'
Requires-Dist: ipympl ; extra == 'docs'
Requires-Dist: ipython ; extra == 'docs'
Requires-Dist: jupyter-client ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'
Requires-Dist: recommonmark ; extra == 'docs'
Requires-Dist: scanpydoc ; extra == 'docs'
Requires-Dist: sphinx-autoapi ; extra == 'docs'
Requires-Dist: sphinx-autosummary-accessors ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: twine ; extra == 'docs'
Requires-Dist: pandoc ; extra == 'docs'

# xradio
Xarray Radio Astronomy Data IO is still in development.

[![Python 3.9 3.10 3.11](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11-blue)](https://www.python.org/downloads/release/python-380/)

# Installing
It is recommended to use the [conda](https://docs.conda.io/projects/conda/en/latest/) environment manager to create a clean, self-contained runtime where xradio and all its dependencies can be installed:
```sh
conda create --name xradio python=3.11 --no-default-packages
conda activate xradio

```
> 📝 On macOS it is required to pre-install `python-casacore` using `conda install -c conda-forge python-casacore`.

Making xradio available for download from conda-forge directly is pending, so until then the current recommendation is to sully that pristine environment by calling pip [from within conda](https://www.anaconda.com/blog/using-pip-in-a-conda-environment), like this:
```sh
pip install xradio
```
