Metadata-Version: 2.1
Name: jupyterlab-theme-christmas
Version: 0.1.0
Summary: JupyterLab Theme Christmas, Designed by Isabela Presedo-Floyd
Home-page: https://github.com/datalayer-jupyter/jupyterlab-theme-christmas
Author: Isabela Presedo-Floyd; Eric Charles; Jovyans at Quansight
License: BSD-3-Clause
Keywords: Jupyter,JupyterLab,JupyterLab3
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: Jupyter
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: jupyterlab (==3.*,>=3.0.0rc2)

[![Datalayer](https://raw.githubusercontent.com/datalayer/datalayer/main/res/logo/datalayer-25.svg?sanitize=true)](https://datalayer.io)

# Ξ JupyterLab Theme for Christmas

> Design by [Isabela Presedo-Floyd](https://github.com/isabela-pf), coded with the help of Jovyans at [Quansight](https://github.com/quansight)

![](./christmas.png)

## Use

```bash
pip install --pre jupyterlab=3.0.0rc10 jupyterlab_theme_christmas
```

## Develop

```bash
# Build the extension and link for dev in shell 1.
jupyter labextension develop --overwrite
```

```bash
# List extensions.
jupyter labextension list
pip list | grep  jupyterlab-theme-christmas
```

```bash
# Run and watch jupyterlab in shell 1.
jlpm watch
```

```bash
# Run and watch jupyterlab in shell 2.
# Look at the remote entry javascript, a webpack5 feature.
mkdir ~/notebooks && \
  jupyter lab \
    --dev-mode \
    --watch \
    --notebook-dir=~/notebooks \
    --ServerApp.token= \
    --extensions-in-dev-mode
```

## Build

```bash
# Generate sourcemaps.
jupyter labextension build --development True .
jupyter lab build --minimize=False
```

```bash
# Do not generate sourcemaps.
jupyter labextension build .
jupyter lab build
```

## Publish

```bash
cd jupyterlab_theme_christmas && \
  jlpm build:lib && \
  npm publish --access public
```

```bash
pip install -e . && \
  pip install jupyter_packaging && \
  python setup.py sdist bdist_wheel && \
  twine upload dist/*
```


