We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pyproject.toml
1 parent a26e0dc commit bfcd5d1Copy full SHA for bfcd5d1
2 files changed
docs/users_guide/README.md
@@ -19,3 +19,12 @@ generation and manipulation.
19
- [create_ensemble_namelists.py](create_ensemble_namelists.md):
20
Creates per-ensemble-member namelist files for eCLM-PDAF Data
21
Assimilation experiments.
22
+
23
+## Installation
24
25
+From the repository root install the dependencies using the provided
26
+`pyproject.toml`:
27
28
+```bash
29
+pip install .
30
+```
pyproject.toml
@@ -0,0 +1,13 @@
1
+[project]
2
+name = "eCLM_namelist-generator"
3
+version = "0.1.0"
4
+description = "Scripts related to eCLM namelist files"
5
+readme = "README.md"
6
+requires-python = ">=3.11"
7
+dependencies = [
8
+ "f90nml>=1.4",
9
+ "lxml>=4.9",
10
+]
11
12
+[tool.setuptools]
13
+packages = []
0 commit comments