Metadata-Version: 2.1
Name: jupyterlab-solutions
Version: 0.0.1
Summary: A jupyterlab extension to hide solutions for assignments
Home-page: UNKNOWN
Author: RMOTR
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: jupyterlab (>=0.35.4)
Requires-Dist: jupyter-nbextensions-configurator (>=0.4.0)

# jupyterlab-rmotr-solutions

My first extension description


## Installation

To install using pip:

```bash
jupyter labextension install https://github.com/rmotr/jupyterlab-solutions
pip install git+https://github.com/rmotr/jupyterlab-solutions.git
```

## Development

For a development install (requires npm version 4 or later), do the following in the repository directory:

```bash
npm install
jupyter labextension link .
```

also add 
```javascript
{
  "NotebookApp": {
    "nbserver_extensions": {
      "jupyter_nbextensions_configurator": true,
      "jupyterlab_rmotr_solutions": true
    }
  }
}
```
on `/Users/<USERNAME>/.jupyter/jupyter_notebook_config.json`.

## Adding custom variables

Add the following to `/Users/<USERNAME>/.jupyter/jupyter_notebook_config.py`.
```
c.JupyterLabRmotrSolutions.is_enabled = True
c.JupyterLabRmotrSolutions.role = 'teacher'
```


