Metadata-Version: 2.3
Name: backgrounds
Version: 0.1.3
Summary: A set of tools for LISA stochastic gravitational wave detection
License: BSD-3-Clause
Author: Quentin Baghi
Author-email: quentin.baghi@protonmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: h5py (>=3.14.0,<4.0.0)
Requires-Dist: interpax (>=0.3.12,<0.4.0)
Requires-Dist: ipykernel (>=6.29.5,<7.0.0)
Requires-Dist: jax (>=0.6.2,<0.7.0)
Requires-Dist: lisaconstants (>=1.3.6,<2.0.0)
Requires-Dist: lisagwresponse (>=2.5.0,<3.0.0)
Requires-Dist: lisaorbits (>=2.4.2,<3.0.0)
Requires-Dist: matplotlib (>=3.10.3,<4.0.0)
Requires-Dist: numpy (>=2.3.1,<3.0.0)
Requires-Dist: ptemcee (>=1.0.0,<2.0.0)
Requires-Dist: pytest (>=8.4.1,<9.0.0)
Requires-Dist: scipy (>=1.16.0,<2.0.0)
Requires-Dist: segwo (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

# backgrounds

A set tools for stochastic gravitational wave backgrounds data analysis.

## Documentation

A documentation is available on Github pages: https://qbaghi.pages.in2p3.fr/backgrounds

## Dependencies

Backgrounds requires LISA Constants and LISA GW Response from the LISA Simulation suite, which can be installed as
```
pip install git+https://@gitlab.in2p3.fr/lisa-simulation/constants.git@latest
pip install git+https://gitlab.in2p3.fr/lisa-simulation/gw-response.git@latest
```
To run the scripts in the tests folder it is recommanded to install the packages listed in the requirements:
```
pip install --no-cache-dir -r requirements.txt
```

## Installation

### Released version

Simply run
```
pip install backgrounds
```

### Development version

You need to be part of the LISA Consortium and have access to the IN2P3 Gitlab to access the
development version. This will change in the future.

Please clone the repository and do a manual installation:
```
git clone git@gitlab.in2p3.fr:qbaghi/backgrounds.git
cd backgrounds
pip install -e .
```
