Metadata-Version: 2.1
Name: parameter-sweep
Version: 0.1.dev0
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: pyomo
Requires-Dist: numpy
Requires-Dist: h5py
Requires-Dist: pyyaml
Requires-Dist: idaes-pse
Requires-Dist: watertap
Provides-Extra: ray
Requires-Dist: ray; extra == "ray"
Provides-Extra: mpi
Requires-Dist: mpi4py; extra == "mpi"
Provides-Extra: testing
Requires-Dist: pytest>=8; extra == "testing"
Requires-Dist: idaes-pse; extra == "testing"
Requires-Dist: watertap; extra == "testing"
Requires-Dist: requests; extra == "testing"

# Parameter Sweep

## For contributors

### Installation

```sh
# create Conda env for Parameter Sweep development, if not present
conda create --yes --name parameter-sweep-dev python=3.10
# ensure Conda env is active
conda activate parameter-sweep-dev
# clone this repo locally
git clone https://github.com/watertap-org/parameter-sweep && cd parameter-sweep
pip install -r requirements-dev.txt
```

### Running tests

```sh
conda activate parameter-sweep-dev
pytest --pyargs parameter_sweep
```

### Before committing

```sh
black .
```
