Skip to content

Commit

Permalink
Merge pull request #20 from ImperialCollegeLondon/add-script-dependen…
Browse files Browse the repository at this point in the history
…cies

Add script dependencies to `pyproject.toml`
  • Loading branch information
sophiemosselmans authored Nov 12, 2024
2 parents 38c1902 + 566056b commit c50fe8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ This is for the FINESSE instrument at Imperial. It is processing code that inclu

Here is a description of what each of the script files currently does:

- **File 0** is just reading the sensors to track BB temperatures, PRT sensors and vaisala instrument pressure temperutre humidity + co2
- **File 0** is just reading the sensors to track BB temperatures, PRT sensors and vaisala instrument pressure temperature humidity + co2

- **File 1** is preparing the interferograms for single or multi (averaged 40)

- **File 2** is calculating the response functions (always done in multi case)

- **File 3a single** is doing calibration for single case [NOTE THIS CODE IS NOT FINISHED]
- **File 3b mulit** is doing calibration for multi case
- **File 3b multi** is doing calibration for multi case

**Quick plot file:**

Expand Down Expand Up @@ -77,7 +77,7 @@ Next you will want to install the dependencies for `FINESSE_processing` along wi
You can do this like so:

```sh
pip install -e .[dev]
pip install -e .[dev,scripts]
```

### Install `pre-commit`
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ dev = [
"pytest-cov",
"pytest-mock",
]
scripts = ["cycler", "matplotlib", "numpy>=2", "pandas", "scipy"]
publishing = ["build", "twine", "wheel"]

[project.urls]
Expand Down Expand Up @@ -71,6 +72,7 @@ select = [
"I", # isort
"UP", # pyupgrade
"RUF", # ruff
"NPY", # numpy
]
pydocstyle.convention = "google"

Expand Down

0 comments on commit c50fe8b

Please sign in to comment.