Metadata-Version: 2.1
Name: evince
Version: 0.56.0
Summary: A visualization framework for the Hylleraas Software Platform
Home-page: https://audunsh.github.io/evince
Author: Audun Skau Hansen
Author-email: audunsh4@gmail.com
License: BSD 3-Clause License
Keywords: ipython,widgets,Jupyter,JupyterLab,JupyterLab3
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: IPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Framework :: Jupyter
Classifier: Framework :: Jupyter :: JupyterLab
Classifier: Framework :: Jupyter :: JupyterLab :: 3
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions
Classifier: Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: ipywidgets (<8.0.3,>=7.6.0)
Requires-Dist: scipy
Requires-Dist: sympy
Requires-Dist: numpy (==1.23.5)
Requires-Dist: ipykernel (<=6.17.1)
Requires-Dist: traittypes

# evince

A visualization framework for the Hylleraas Software Platform

## Installation

To install use pip:

    $ pip install evince

For a development installation (requires [Node.js](https://nodejs.org) and [Yarn version 1](https://classic.yarnpkg.com/)),

    $ git clone https://github.com//evince.git
    $ cd evince
    $ pip install -e .
    $ jupyter nbextension install --py --symlink --overwrite --sys-prefix evince
    $ jupyter nbextension enable --py --sys-prefix evince

When actively developing your extension for JupyterLab, run the command:

    $ jupyter labextension develop --overwrite evince

Then you need to rebuild the JS when you make a code change:

    $ cd js
    $ yarn run build

You then need to refresh the JupyterLab page when your javascript changes.
