Metadata-Version: 2.4
Name: hveto
Version: 2.1.5
Summary: A python implementation of the HierarchicalVeto (hveto) algorithm
Author-email: Joshua Smith <joshua.smith@ligo.org>, Duncan Macleod <duncan.macleod@ligo.org>
Maintainer-email: Joe Areeda <joseph.areeda@ligo.org>
Project-URL: Bug Tracker, https://github.com/gwdetchar/hveto/issues
Project-URL: Documentation, https://hveto.readthedocs.io
Project-URL: Source Code, https://github.com/gwdetchar/hveto
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: gwdetchar>=2.0.0
Requires-Dist: gwpy>=2.0.0
Requires-Dist: gwtrigfind>=0.8.3
Requires-Dist: h5py
Requires-Dist: lxml
Requires-Dist: MarkupPy>=1.14
Requires-Dist: matplotlib>=3.1
Requires-Dist: numpy>=1.10
Requires-Dist: python-ligo-lw>=1.5.0
Requires-Dist: scipy
Provides-Extra: test
Requires-Dist: coverage[toml]; extra == "test"
Requires-Dist: pytest>=3.1.0; extra == "test"
Requires-Dist: pytest-cov>=2.4.0; extra == "test"
Provides-Extra: docs
Requires-Dist: numpydoc; extra == "docs"
Requires-Dist: Sphinx; extra == "docs"
Requires-Dist: sphinx_bootstrap_theme; extra == "docs"
Requires-Dist: sphinxcontrib-programoutput; extra == "docs"
Dynamic: license-file

=================
Hierarchical Veto
=================

Hveto is a python implementation of the HierarchicalVeto algorithm. It is
a package designed for gravitational-wave detector characterisation and
data quality.

The Hveto algorithm is fully described in `Smith et al. 2011`_
(Classical and Quantum Gravity).

|PyPI version| |Conda version|

|DOI| |License| |Supported Python versions|

|Build Status| |Coverage Status| |Documentation Status|

https://hveto.readthedocs.io

------------
Installation
------------

Hveto is best installed with `conda`_:

.. code:: bash

   conda install -c conda-forge hveto

but can also be installed with `pip`_:

.. code:: bash

   python -m pip install hveto

------------
Contributing
------------

All code should follow the Python Style Guide outlined in `PEP 0008`_;
users can use the `flake8`_ package to check their code for style issues
before submitting.

See `the contributions guide`_ for the recommended procedure for
proposing additions/changes.

.. _PEP 0008: https://www.python.org/dev/peps/pep-0008/
.. _flake8: http://flake8.pycqa.org
.. _the contributions guide: https://github.com/gwdetchar/hveto/blob/master/CONTRIBUTING.md
.. _conda: https://conda.io
.. _pip: https://pip.pypa.io/en/stable/
.. _Smith et al. 2011: //dx.doi.org/10.1088/0264-9381/28/23/235005

.. |PyPI version| image:: https://badge.fury.io/py/hveto.svg
   :target: http://badge.fury.io/py/hveto
.. |Conda version| image:: https://img.shields.io/conda/vn/conda-forge/hveto.svg
   :target: https://anaconda.org/conda-forge/hveto/
.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/2584615.svg
   :target: https://doi.org/10.5281/zenodo.2584615
.. |License| image:: https://img.shields.io/pypi/l/hveto.svg
   :target: https://choosealicense.com/licenses/gpl-3.0/
.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/hveto.svg
   :target: https://pypi.org/project/hveto/
.. |Build Status| image:: https://github.com/gwdetchar/hveto/actions/workflows/build.yml/badge.svg
   :target: https://github.com/gwdetchar/hveto/actions/workflows/build.yml
.. |Coverage Status| image:: https://codecov.io/gh/gwdetchar/hveto/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/gwdetchar/hveto
.. |Documentation Status| image:: https://readthedocs.org/projects/hveto/badge/?version=stable
   :target: https://hveto.readthedocs.io/en/stable/?badge=stable
