# LISA GW Response
LISA GW Response is a Python package computing the instrumental response to
gravitational-waves, and produce a gravitational-wave (GW) file compatible with
[LISA Instrument](https://gitlab.in2p3.fr/lisa-simulation/instrument) and
[LISANode](https://gitlab.in2p3.fr/j2b.bayle/LISANode).
## Contributing
### Report an issue
We use the issue-tracking management system associated with the project provided
by Gitlab. If you want to report a bug or request a feature, open an issue at
<https://gitlab.in2p3.fr/lisa-simulation/gw-response/-/issues>. You may also
thumb-up or comment on existing issues.
### Development environment
Start by cloning the project repository,
```bash
git clone git@gitlab.in2p3.fr:lisa-simulation/gw-response.git
cd gw-response
```
This project uses [Poetry 2](https://python-poetry.org/) to manage dependencies
and packaging. Poetry can prepare a virtual environment for developement, and is
used to build the package.
To run a command inside the project development environement, use
```bash
poetry run <YOUR-COMMAND>
```
You can also explicitely create a virtual environement with
```bash
poetry install
```
You can then activate your environement or setup VS Code to use it.
Remember to synchronize your environement whenever the dependencies change,
using the command
```bash
poetry sync
```
Refer to the [Poetry documentation](https://python-poetry.org/docs/) for more
information.
### Pre-commit hooks
We recommend you install pre-commit hooks to detect errors before you even
commit.
```bash
poetry run pre-commit install
```
You can then run the pre-commit hooks manually with
```bash
poetry run pre-commit run --all-files
```
### Syntax
We enforce PEP 8 (Style Guide for Python Code) with Pylint syntax checking, and
code formatting with Black. Both are implemented in the continuous integration
system, and merge requests cannot be merged if it fails. Pre-commit hooks will
also run Black before you commit.
You can run them locally with
```bash
poetry run pylint lisaorbits
poetry run mypy lolipops
poetry run black --check .
```
Note that VS Code can be configured to run Black when saving a file, and to
display Pylint errors in the editor.
### Unit tests
Correction of the code is checked by the pytest testing framework. It is
implemented in the continuous integration system, but we recommend you run the
tests locally before you commit, with
```bash
poetry run pytest
```
Note that VS Code can be configured to run the tests easily.
### VS Code tasks
Convenient scripts are available to run in VS Code for common developement or
maintenance tasks, such as running the pre-commit hooks, formatting with Black,
building the documentation or building the package.
They are located in ".vscode/tasks.json". In VS Code, you can run them by
opening the command palette (Cmd + Shift + P) and choosing "Tasks: Run Task...".
### Workflow
The project's development workflow is based on the issue-tracking system
provided by Gitlab, as well as peer-reviewed merge requests. This ensures
high-quality standards.
Issues are solved by creating branches and opening merge requests. Only the
assignee of the related issue and merge request can push commits on the branch.
Once all the changes have been pushed, the "draft" specifier on the merge
request is removed, and the merge request is assigned to a reviewer. He can push
new changes to the branch, or request changes to the original author by
re-assigning the merge request to them. When the merge request is accepted, the
branch is merged onto master, deleted, and the associated issue is closed.
## Use policy
The project is distributed under the 3-Clause BSD open-source license to foster
open science in our community and share common tools. Please keep in mind that
developing and maintaining such a tool takes time and effort. Therefore, we
kindly ask you to
* Cite the DOI (see badge above) in any publication
* Acknowledge the authors (below)
* Acknowledge the LISA Simulation Expert Group in any publication
Do not hesitate to send an email to the authors for support. We always
appreciate being associated with research projects.
## Authors
* Jean-Baptiste Bayle (<j2b.bayle@gmail.com>)
* Quentin Baghi (<quentin.baghi@cea.fr>)
* Arianna Renzini (<arenzini@caltech.edu>)
* Maude Le Jeune (<lejeune@apc.in2p3.fr>)
Raw data
{
"_id": null,
"home_page": "https://gitlab.in2p3.fr/lisa-simulation/gw-response",
"name": "lisagwresponse",
"maintainer": "Jean-Baptiste Bayle",
"docs_url": null,
"requires_python": "<4.0,>=3.12",
"maintainer_email": "j2b.bayle@gmail.com>",
"keywords": "LISA, response function, simulation",
"author": "Jean-Baptiste Bayle",
"author_email": "j2b.bayle@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/64/01/546cf7b957c141cc0277618146e1b31342f9ba619e06cbe860442f306433/lisagwresponse-3.0.0.tar.gz",
"platform": null,
"description": "# LISA GW Response\n\nLISA GW Response is a Python package computing the instrumental response to\ngravitational-waves, and produce a gravitational-wave (GW) file compatible with\n[LISA Instrument](https://gitlab.in2p3.fr/lisa-simulation/instrument) and\n[LISANode](https://gitlab.in2p3.fr/j2b.bayle/LISANode).\n\n## Contributing\n\n### Report an issue\n\nWe use the issue-tracking management system associated with the project provided\nby Gitlab. If you want to report a bug or request a feature, open an issue at\n<https://gitlab.in2p3.fr/lisa-simulation/gw-response/-/issues>. You may also\nthumb-up or comment on existing issues.\n\n### Development environment\n\nStart by cloning the project repository,\n\n```bash\ngit clone git@gitlab.in2p3.fr:lisa-simulation/gw-response.git\ncd gw-response\n```\n\nThis project uses [Poetry 2](https://python-poetry.org/) to manage dependencies\nand packaging. Poetry can prepare a virtual environment for developement, and is\nused to build the package.\n\nTo run a command inside the project development environement, use\n\n```bash\npoetry run <YOUR-COMMAND>\n```\n\nYou can also explicitely create a virtual environement with\n\n```bash\npoetry install\n```\n\nYou can then activate your environement or setup VS Code to use it.\n\nRemember to synchronize your environement whenever the dependencies change,\nusing the command\n\n```bash\npoetry sync\n```\n\nRefer to the [Poetry documentation](https://python-poetry.org/docs/) for more\ninformation.\n\n### Pre-commit hooks\n\nWe recommend you install pre-commit hooks to detect errors before you even\ncommit.\n\n```bash\npoetry run pre-commit install\n```\n\nYou can then run the pre-commit hooks manually with\n\n```bash\npoetry run pre-commit run --all-files\n```\n\n### Syntax\n\nWe enforce PEP 8 (Style Guide for Python Code) with Pylint syntax checking, and\ncode formatting with Black. Both are implemented in the continuous integration\nsystem, and merge requests cannot be merged if it fails. Pre-commit hooks will\nalso run Black before you commit.\n\nYou can run them locally with\n\n```bash\npoetry run pylint lisaorbits\npoetry run mypy lolipops\npoetry run black --check .\n```\n\nNote that VS Code can be configured to run Black when saving a file, and to\ndisplay Pylint errors in the editor.\n\n### Unit tests\n\nCorrection of the code is checked by the pytest testing framework. It is\nimplemented in the continuous integration system, but we recommend you run the\ntests locally before you commit, with\n\n```bash\npoetry run pytest\n```\n\nNote that VS Code can be configured to run the tests easily.\n\n### VS Code tasks\n\nConvenient scripts are available to run in VS Code for common developement or\nmaintenance tasks, such as running the pre-commit hooks, formatting with Black,\nbuilding the documentation or building the package.\n\nThey are located in \".vscode/tasks.json\". In VS Code, you can run them by\nopening the command palette (Cmd + Shift + P) and choosing \"Tasks: Run Task...\".\n\n### Workflow\n\nThe project's development workflow is based on the issue-tracking system\nprovided by Gitlab, as well as peer-reviewed merge requests. This ensures\nhigh-quality standards.\n\nIssues are solved by creating branches and opening merge requests. Only the\nassignee of the related issue and merge request can push commits on the branch.\nOnce all the changes have been pushed, the \"draft\" specifier on the merge\nrequest is removed, and the merge request is assigned to a reviewer. He can push\nnew changes to the branch, or request changes to the original author by\nre-assigning the merge request to them. When the merge request is accepted, the\nbranch is merged onto master, deleted, and the associated issue is closed.\n\n## Use policy\n\nThe project is distributed under the 3-Clause BSD open-source license to foster\nopen science in our community and share common tools. Please keep in mind that\ndeveloping and maintaining such a tool takes time and effort. Therefore, we\nkindly ask you to\n\n* Cite the DOI (see badge above) in any publication\n* Acknowledge the authors (below)\n* Acknowledge the LISA Simulation Expert Group in any publication\n\nDo not hesitate to send an email to the authors for support. We always\nappreciate being associated with research projects.\n\n## Authors\n\n* Jean-Baptiste Bayle (<j2b.bayle@gmail.com>)\n* Quentin Baghi (<quentin.baghi@cea.fr>)\n* Arianna Renzini (<arenzini@caltech.edu>)\n* Maude Le Jeune (<lejeune@apc.in2p3.fr>)\n",
"bugtrack_url": null,
"license": "BSD 3-Clause",
"summary": "Compute the LISA link responses to gravitational waves in the time domain",
"version": "3.0.0",
"project_urls": {
"Documentation": "https://lisa-simulation.pages.in2p3.fr/gw-response",
"Download": "https://gitlab.in2p3.fr/lisa-simulation/gw-response/-/releases",
"Homepage": "https://gitlab.in2p3.fr/lisa-simulation/gw-response",
"Issue Tracker": "https://gitlab.in2p3.fr/lisa-simulation/gw-response/-/issues",
"Repository": "https://gitlab.in2p3.fr/lisa-simulation/gw-response"
},
"split_keywords": [
"lisa",
" response function",
" simulation"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8d167d5f23babd77a9bd7f2b527c1e58aa791d2c2096775eb00db772d0be2281",
"md5": "4790603342e3f4936f303ab73af60d43",
"sha256": "da7672aef1b2979ce049b343bfcafb646f6fbb0b3ec96268a854d505910fac6c"
},
"downloads": -1,
"filename": "lisagwresponse-3.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4790603342e3f4936f303ab73af60d43",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.12",
"size": 22231,
"upload_time": "2025-10-06T22:02:40",
"upload_time_iso_8601": "2025-10-06T22:02:40.174162Z",
"url": "https://files.pythonhosted.org/packages/8d/16/7d5f23babd77a9bd7f2b527c1e58aa791d2c2096775eb00db772d0be2281/lisagwresponse-3.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6401546cf7b957c141cc0277618146e1b31342f9ba619e06cbe860442f306433",
"md5": "9d15cbbd5315c4eda858ca1c15517bf0",
"sha256": "a1a1b6729cff476684376e4681bb692c801dbf8512fa8f75ca81f7239eeb47af"
},
"downloads": -1,
"filename": "lisagwresponse-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "9d15cbbd5315c4eda858ca1c15517bf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.12",
"size": 21358,
"upload_time": "2025-10-06T22:02:41",
"upload_time_iso_8601": "2025-10-06T22:02:41.430607Z",
"url": "https://files.pythonhosted.org/packages/64/01/546cf7b957c141cc0277618146e1b31342f9ba619e06cbe860442f306433/lisagwresponse-3.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-06 22:02:41",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "lisagwresponse"
}