'JupyterLab' as an optional dependency of Pyxel

Currently, when a user installs Pyxel from PyPi, JupyterLab is automatically installed.

Unfortunately, we shouldn't force the installation of JupyterLab because:

Therefore, JupyterLab should be an optional dependency for Pyxel.

Example:

Installation without Jupyter lab
$ pip install pyxel-sim
 
With Jupyter lab
$ pip install pyxel-sim[jupyter]
 
With everything (poppy, pygmo...)
$ pip install pyxel-sim[all]
Edited by Frederic Lemmel