Metadata-Version: 2.1
Name: xradio
Version: 0.0.1
Summary: Xarray Radio Astronomy Data IO
Author-email: Jan-Willem Steeb <jsteeb@nrao.edu>
Requires-Python: <3.12,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: astropy
Requires-Dist: dask
Requires-Dist: distributed
Requires-Dist: gdown
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: scipy
Requires-Dist: xarray
Requires-Dist: zarr
Requires-Dist: bokeh
Requires-Dist: jupyterlab
Requires-Dist: python-casacore (>=3.5.2) ; sys_platform != "darwin"
Provides-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 Aatronomy Data IO

[![Python 3.8 3.9 3.10 3.11](https://img.shields.io/badge/python-3.8%20%7C%203.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
```
