Metadata-Version: 2.1
Name: everviz
Version: 0.0.0
Summary: Visualization for Everest
Author-email: Equinor ASA <fg_sib-scout@equinor.com>
License: AGPL-3.0
Project-URL: repository, https://github.com/equinor/everviz
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
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
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyyaml
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: dash>=2.0
Requires-Dist: webviz-config>=0.2.0
Requires-Dist: webviz-config-equinor
Requires-Dist: plotly
Requires-Dist: flask
Provides-Extra: test
Requires-Dist: dash[testing]; extra == "test"
Requires-Dist: pillow; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: sphinx; extra == "test"
Provides-Extra: style
Requires-Dist: ruff; extra == "style"
Requires-Dist: pylint; extra == "style"
Requires-Dist: black; extra == "style"

![Publish Python 🐍 distributions 📦 to PyPI](https://github.com/equinor/everviz/workflows/Publish%20Python%20%F0%9F%90%8D%20distributions%20%F0%9F%93%A6%20to%20PyPI/badge.svg)
![Python package](https://github.com/equinor/everviz/workflows/Python%20package/badge.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)

# everviz: web based visualization for everest

## What is everviz
everviz is a visualization plugin for everest based on [dash](https://github.com/plotly/dash) 
and [webviz-config](https://github.com/equinor/webviz-config).

## Download project
The code is hosted on GitHub:
https://github.com/equinor/everviz

The latest version is available on [pypi](https://pypi.org/project/everviz).

```sh
# Install
pip install everviz
```

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

```sh
# Test
pip install tox
tox
```

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

```sh
# Test
pip install tox
tox -e py37
```

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

```sh
# Test
pytest
# or to run the tests headless:
pytest --headless
```

this requires that the test dependencies from `tox.ini` are installed.

The tests requires WebDrivers (default: Chrome), more information can be found [here](https://dash.plotly.com/testing)
