Metadata-Version: 2.4
Name: ska-ssc-low-comm-tools
Version: 1.2.0
Summary: SKA-Low Commissioning Tools
Project-URL: Homepage, https://gitlab.com/ska-telescope/ssc/ska-low-scicomm-tools
Project-URL: Bug Tracker, https://gitlab.com/ska-telescope/ssc/ska-low-scicomm-tools/issues
Project-URL: Discussions, https://gitlab.com/ska-telescope/ssc/ska-low-scicomm-tools/discussions
Project-URL: Changelog, https://gitlab.com/ska-telescope/ssc/ska-low-scicomm-tools/releases
Author-email: SKA-Low Commissioning Team <alec.thomson@skao.int>
License-Expression: BSD-3-Clause
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: astropy>=6.1.7
Requires-Dist: astroquery>=0.4.10
Requires-Dist: everybeam>=0.7.2
Requires-Dist: healpy>=1.18.1
Requires-Dist: matplotlib>=3.10.6
Requires-Dist: numpy>=1.26.4
Requires-Dist: pandas>=2.3.2
Requires-Dist: polars>=1.33.1
Requires-Dist: pydantic>=2.11.9
Requires-Dist: python-casacore>=3.7.1
Requires-Dist: radio-beam>=0.3.9
Requires-Dist: rm-lite>=2025.5.1
Requires-Dist: ska-low-mccs-calibration>=1.2.0
Requires-Dist: ska-sdp-datamodels>=1.0.1
Requires-Dist: ska-sdp-func-python>=1.0.1
Requires-Dist: ska-sdp-func>=1.2.2
Requires-Dist: ska-sdp-instrumental-calibration[python-casacore,ska-sdp-func]>=0.4.1
Requires-Dist: tqdm>=4.67.1
Provides-Extra: dev
Requires-Dist: mypy>=1.17.1; extra == 'dev'
Requires-Dist: nox>=2025.5.1; extra == 'dev'
Requires-Dist: pre-commit>=4.3.0; extra == 'dev'
Requires-Dist: pytest-cov>=6.2.1; extra == 'dev'
Requires-Dist: pytest>=8.4.1; extra == 'dev'
Requires-Dist: ruff>=0.12.11; extra == 'dev'
Requires-Dist: types-tqdm>=4.67.0.20250809; extra == 'dev'
Provides-Extra: docs
Requires-Dist: furo>=2023.08.17; extra == 'docs'
Requires-Dist: myst-parser>=0.13; extra == 'docs'
Requires-Dist: ska-ser-sphinx-theme; extra == 'docs'
Requires-Dist: sphinx-argparse; extra == 'docs'
Requires-Dist: sphinx-autoapi; extra == 'docs'
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
Requires-Dist: sphinx-copybutton; extra == 'docs'
Requires-Dist: sphinx>=7.0; extra == 'docs'
Description-Content-Type: text/markdown

# SKA-Low Commissioning Tools

A python module and scripts of SKA-Low commissing tasks with visibilities.

<!-- [![Actions Status][actions-badge]][actions-link]
[![Documentation Status][rtd-badge]][rtd-link]

[![PyPI version][pypi-version]][pypi-link]
[![Conda-Forge][conda-badge]][conda-link]
[![PyPI platforms][pypi-platforms]][pypi-link]

[![GitHub Discussion][github-discussions-badge]][github-discussions-link] -->

<!-- SPHINX-START -->

<!-- prettier-ignore-start -->
<!-- [actions-badge]:            https://gitlab.com/ska-telescope/ssc/ska-ssc-low-comm-tools/workflows/CI/badge.svg
[actions-link]:             https://gitlab.com/ska-telescope/ssc/ska-ssc-low-comm-tools/actions
[conda-badge]:              https://img.shields.io/conda/vn/conda-forge/SKA-Low Commissioning Tools
[conda-link]:               https://github.com/conda-forge/SKA-Low Commissioning Tools-feedstock
[github-discussions-badge]: https://img.shields.io/static/v1?label=Discussions&message=Ask&color=blue&logo=github
[github-discussions-link]:  ttps://gitlab.com/ska-telescope/ssc/ska-ssc-low-comm-tools//discussions
[pypi-link]:                https://pypi.org/project/SKA-Low Commissioning Tools/
[pypi-platforms]:           https://img.shields.io/pypi/pyversions/SKA-Low Commissioning Tools
[pypi-version]:             https://img.shields.io/pypi/v/SKA-Low Commissioning Tools
[rtd-badge]:                https://readthedocs.org/projects/SKA-Low Commissioning Tools/badge/?version=latest
[rtd-link]:                 https://SKA-Low Commissioning Tools.readthedocs.io/en/latest/?badge=latest -->

<!-- prettier-ignore-end -->

## Installation

These tools require the following utilities to be installed and available on the
user's `PATH`:

- Monolithic [CASA 6](https://casa.nrao.edu/casa_obtaining.shtml). Note that,
  unfortunately, modular CASA conflicts with `python-casacore` and cannot be
  installed in the same Python environment.
- [AOFlagger](https://aoflagger.readthedocs.io/en/latest/)
- [AOCalibrate](https://github.com/flint-crew/calibrate)

To install the tools themselves, just use `pip`:

```bash
pip install git+https://gitlab.com/ska-telescope/ssc/ska-ssc-low-comm-tools.git
```

## Development

Clone and install. Optional groups are `dev` and `docs` - install as required.

```bash
git clone https://gitlab.com/ska-telescope/ssc/ska-ssc-low-comm-tools.git
cd ska-low-commissioning-tools
pip install -e .[dev]
```

Optionally install `pre-commit`

```bash
cd ska-low-commissioning-tools
pre-commit install
pre-commit run --all-files
```

Test with `pytest`

```bash
cd ska-low-commissioning-tools
pytest --cov low_comm_tools
```
