diff --git a/README.md b/README.md index 95d94e2..986f9bb 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,31 @@ [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/martinRenou/voila-material/master?urlpath=voila) -Material design template example for voila +Material design template for voila + +## Installation + +``` +pip install voila-material +``` + +## Usage + +``` +voila my_notebook.ipynb --template=material +``` + +Or for the dark theme: + +``` +voila my_notebook.ipynb --template=material --theme=dark +``` + +## Example ![screenshot](./voila-material.png) -Theme support +Dark support ![screenshot](./voila-material-dark.png) diff --git a/environment.yml b/environment.yml index e448730..b908ea7 100644 --- a/environment.yml +++ b/environment.yml @@ -2,6 +2,6 @@ name: voila-material channels: - conda-forge dependencies: - - ipywidgets=7.4.2 + - ipywidgets=7.5.1 - bqplot - - voila=0.1.2 + - voila=0.1.10 diff --git a/setup.py b/setup.py index 78613f3..2aa594a 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,7 @@ def run(self): setup( name='voila-material', - version="0.0.1", + version="0.1.0", description="Material design template for voila", data_files=data_files, include_package_data=True,