Metadata-Version: 2.5
Name: pluot
Version: 0.1.23
Summary: Meta-package for Pluot. Install with the bindings and/or widget extras. Pure python package.
Project-URL: repository, https://github.com/keller-mark/pluot
Author: Mark Keller
License-Expression: Apache-2.0
Requires-Python: >=3.12
Requires-Dist: pluot-core==0.1.23
Provides-Extra: bindings
Requires-Dist: pluot-bound==0.1.23; extra == 'bindings'
Provides-Extra: widget
Requires-Dist: pluot-widget==0.1.23; extra == 'widget'
Description-Content-Type: text/markdown

This is a meta-Python package which uses extras_require / optional dependencies metadata to allow a user to install either the Rust bindings, the Anywidget, or both:

```sh
pip install pluot # neither, only re-exports things from pluot_core
pip install pluot[widget]
pip install pluot[bindings]
pip install pluot[widget,bindings] # both
```
