Metadata-Version: 2.4
Name: scsketch
Version: 0.0.2
Requires-Dist: anywidget
Provides-Extra: dev
Requires-Dist: jupyterlab; extra == 'dev'
Requires-Dist: watchfiles; extra == 'dev'
Description-Content-Type: text/markdown

# scsketch

## Installation

```sh
pip install scsketch
```

or with [uv](https://github.com/astral-sh/uv):

```sh
uv add scsketch
```

## Development

We recommend using [uv](https://github.com/astral-sh/uv) for development.
It will automatically manage virtual environments and dependencies for you.

```sh
uv run jupyter lab demo.ipynb
```

Alternatively, create and manage your own virtual environment:

```sh
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
jupyter lab demo.ipynb
```

Open `demo.ipynb` in JupyterLab, VS Code, or your favorite editor
to start developing. Changes made in `src/scsketch/static/` will be reflected
in the notebook.
