Metadata-Version: 2.4
Name: everviz
Version: 0.1.2
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"
Requires-Dist: polars; extra == "test"
Provides-Extra: style
Requires-Dist: pre-commit; extra == "style"
Dynamic: license-file

![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

```sh
# Test
wget https://chromedriver.storage.googleapis.com/$(wget https://chromedriver.storage.googleapis.com/LATEST_RELEASE -q -O -)/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
export PATH=$PATH:$PWD
python -m pip install ".[test]"
pytest --headless
```
