Metadata-Version: 2.3
Name: ifc-hlm
Version: 0.4.0
Summary: Hillslope-Link Model
Author: Ruben Molina
Author-email: rmolina@gmail.com
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: bmipy (>=2.0)
Requires-Dist: networkx (>=2.8)
Requires-Dist: numpy (>=1.21)
Requires-Dist: pandas (>=1.4)
Requires-Dist: pyyaml (>=6.0)
Requires-Dist: scipy (>=1.9)
Requires-Dist: tqdm (>=4.60)
Description-Content-Type: text/markdown

# ifc-hlm

 A Python version of the Iowa Flood Center’s (IFC’s) Hillslope-Link Model (HLM) implementing the Basic Model Interface (BMI).

[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.15025535.svg)](https://doi.org/10.5281/zenodo.15025535)
 
## Installation

```bash
pip install ifc-hlm
```

## Usage

```python
from ifc_hlm.models import Model252

model = Model252()
model.initialize("config.yaml")
model.solve()
```

