backgrounds 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.1
2
+ Name: backgrounds
3
+ Version: 0.1.0
4
+ Summary: Tools for the detection of stochastic gravitational-wave backgrounds based on J.B. Bayle's LISA GW Response.
5
+ Home-page: https://gitlab.in2p3.fr/qbaghi/backgrounds
6
+ Author: Quentin Baghi
7
+ Author-email: quentin.baghi@protonmail.com
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+
11
+ # backgrounds
12
+
13
+ Principal component analysis application to stochastic gravitational wave detection.
14
+
15
+ ## Dependencies
16
+
17
+ Backgrounds requires LISA Constants and LISA GW Response from the LISA Simulation suite, which can be installed as
18
+ ```
19
+ pip install git+https://@gitlab.in2p3.fr/lisa-simulation/constants.git@latest
20
+ pip install git+https://gitlab.in2p3.fr/lisa-simulation/gw-response.git@latest
21
+ ```
22
+ To run the scripts in the tests folder it is recommanded to install the packages listed in the requirements:
23
+ ```
24
+ pip install --no-cache-dir -r requirements.txt
25
+ ```
26
+
27
+ ## Installation
28
+
29
+ Please clone the repository and do a manual installation:
30
+ ```
31
+ git clone git@gitlab.in2p3.fr:qbaghi/backgrounds.git
32
+ cd backgrounds
33
+ python3 setup.py install
34
+ ```
@@ -0,0 +1,24 @@
1
+ # backgrounds
2
+
3
+ Principal component analysis application to stochastic gravitational wave detection.
4
+
5
+ ## Dependencies
6
+
7
+ Backgrounds requires LISA Constants and LISA GW Response from the LISA Simulation suite, which can be installed as
8
+ ```
9
+ pip install git+https://@gitlab.in2p3.fr/lisa-simulation/constants.git@latest
10
+ pip install git+https://gitlab.in2p3.fr/lisa-simulation/gw-response.git@latest
11
+ ```
12
+ To run the scripts in the tests folder it is recommanded to install the packages listed in the requirements:
13
+ ```
14
+ pip install --no-cache-dir -r requirements.txt
15
+ ```
16
+
17
+ ## Installation
18
+
19
+ Please clone the repository and do a manual installation:
20
+ ```
21
+ git clone git@gitlab.in2p3.fr:qbaghi/backgrounds.git
22
+ cd backgrounds
23
+ python3 setup.py install
24
+ ```
@@ -0,0 +1,9 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Author: Quentin Baghi 2021 <quentin.baghi@protonmail.com>
3
+ """backgrounds module."""
4
+
5
+ from .core import Response
6
+ from .core import StochasticBackgroundResponse, StochasticPointSourceResponse
7
+ from .signal import SignalPSD
8
+ from .signal import sgwb_psd
9
+ from .noise import SplineNoiseModel