Metadata-Version: 2.1
Name: tom-antares
Version: 1.2.3
Summary: Antares broker module for the TOM Toolkit
Home-page: https://tomtoolkit.github.io
Author: TOM Toolkit Project
Author-email: llindstrom@lco.global
License: UNKNOWN
Keywords: tomtoolkit,astronomy,astrophysics,cosmology,science,fits,observatory,antares
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Physics
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

[![pypi](https://img.shields.io/pypi/v/tom-antares.svg)](https://pypi.python.org/pypi/tom-antares)
[![run-tests](https://github.com/TOMToolkit/tom_antares/actions/workflows/run-tests.yml/badge.svg)](https://github.com/TOMToolkit/tom_antares/actions/workflows/run-tests.yml)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6812def88cd5479ab4b833eedd52217f)](https://www.codacy.com/gh/TOMToolkit/tom_antares/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=TOMToolkit/tom_antares&amp;utm_campaign=Badge_Grade)
[![Coverage Status](https://coveralls.io/repos/github/TOMToolkit/tom_antares/badge.svg?branch=main)](https://coveralls.io/github/TOMToolkit/tom_antares?branch=main)

# Antares TOM Broker Module

This module adds [Antares](https://antares.noao.edu/) support to the TOM
Toolkit. Using this module TOMs can query and listen to Antares streams.

## Installation

Install the module into your TOM environment:

    pip install tom-antares

Add `tom_antares.antares.AntaresBroker` to the `TOM_ALERT_CLASSES` in your TOM's
`settings.py`:

    TOM_ALERT_CLASSES = [
        'tom_alerts.brokers.mars.MARSBroker',
        ...
        'tom_antares.antares.ANTARESBroker'
    ]

## Running the tests

In order to run the tests, run the following in your virtualenv:

`python tom_antares/tests/run_tests.py`


