Metadata-Version: 2.1
Name: semeio
Version: 1.11.1
Summary: Forward models and workflows for Ert.
Author-email: Equinor ASA <fg_sib-scout@equinor.com>
License: GPL-3.0
Project-URL: repository, https://github.com/equinor/semeio
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: resdata
Requires-Dist: ert >=9.0.0
Requires-Dist: importlib-metadata
Requires-Dist: importlib-resources
Requires-Dist: numpy
Requires-Dist: pandas >1.3.0
Requires-Dist: pydantic >2
Requires-Dist: scikit-learn
Requires-Dist: scipy
Requires-Dist: xlrd
Requires-Dist: pyscal >=0.4.0
Requires-Dist: fmu-ensemble >1.6.5
Requires-Dist: segyio
Requires-Dist: xtgeo >=2.15
Provides-Extra: test
Requires-Dist: hypothesis ; extra == 'test'
Requires-Dist: odfpy ; extra == 'test'
Requires-Dist: oil-reservoir-synthesizer ; extra == 'test'
Requires-Dist: openpyxl ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-console-scripts ; extra == 'test'
Requires-Dist: pytest-snapshot ; extra == 'test'
Requires-Dist: rstcheck-core ; extra == 'test'
Requires-Dist: xlwt ; extra == 'test'
Requires-Dist: mypy ; extra == 'test'
Requires-Dist: pandas-stubs ; extra == 'test'
Requires-Dist: types-setuptools ; extra == 'test'
Requires-Dist: types-PyYAML ; extra == 'test'

[![PyPI version](https://badge.fury.io/py/semeio.svg)](https://badge.fury.io/py/semeio)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/semeio)](https://img.shields.io/pypi/pyversions/semeio)
[![Actions Status](https://github.com/equinor/semeio/workflows/CI/badge.svg)](https://github.com/equinor/semeio/actions?query=workflow=CI)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

# semeio #

Semeio is a collection of forward models and workflows used in [ERT](https://github.com/equinor/ert). These are
exposing end points which is considered the API of semeio. If there are submodules that can be applied
more generally, or have use outside these forward models and workflows, please create an issue and it can be exposed in
the API.

# Installation and usage

Semeio is available on [pypi](https://pypi.org/project/semeio/) and can be installed using `pip install semeio`.

```sh
# Install
pip install semeio
```

## Usage

Once installed semeio will automatically register its workflows and forward models with
[ERT](https://github.com/equinor/ert). Through the plugin hooks it will also add its own documentation to the [ERT](https://github.com/equinor/ert)
documentation. See the [ERT](https://github.com/equinor/ert) documentation for examples on
how to run workflows and forward models, and build the [ERT](https://github.com/equinor/ert) documentation to get
documentation for the workflows and forward models.

## Run tests
[tox](https://tox.readthedocs.io/en/latest/) is used as the test facilitator,
to run the full test suite:

```sh
pip install tox
tox
```

or to run it for a particular Python version (in this case Python 3.10):

```sh
pip install tox
tox -e py310
```

or to run it for a the current Python version:

```sh
pip install tox
tox -e py
```

[pytest](https://docs.pytest.org/en/latest/) is used as the test runner, so for quicker
iteration it is possible to run:

```sh
pytest
```

this requires that test-dependencies are installed:

```sh
# Install test requirements
pip install "semeio[test]"
```

[pre-commit](https://pre-commit.com/) is used to comply with the formatting standards.
The complete formatting tests can be run with:

```sh
pip install tox
tox -e style
```

Formatting tests include `black`, `flake8` and `pylint`, See `.pre-commit-config.yaml` for the
complete steps.

[pre-commit](https://pre-commit.com/) can also provide git hooks to run on every commit
to avoid commiting with formatting errors. This will only run on the diff so is quite fast.
To configure this, run:

```sh
pip install "semeio[test]"
pip install pre-commit
pre-commit install
```

After this the hook will run on every commit.

If you would like to remove the hooks, run:

```sh
pre-commit uninstall
```
