Metadata-Version: 2.1
Name: deephaven-plugin
Version: 0.0.1.dev5
Summary: Deephaven Plugin interface
Home-page: https://github.com/deephaven/deephaven-plugin
Author: Devin Smith
Author-email: devinsmith@deephaven.io
License: UNKNOWN
Project-URL: Source Code, https://github.com/deephaven/deephaven-plugin
Project-URL: Bug Tracker, https://github.com/deephaven/deephaven-plugin/issues
Keywords: deephaven,plugin
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Plugins
Classifier: Development Status :: 3 - Alpha
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: importlib-metadata (>=3.6) ; python_version < "3.8"

# Deephaven Plugin interface

The Deephaven Plugin interface.

Currently in development.

## Build

To create your build / development environment:

```sh
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip setuptools build
```

To build:

```sh
python -m build --wheel
```

produces the wheel into `dist/`.

