Metadata-Version: 2.3
Name: goodmap_nothingshere
Version: 0.1.3
Summary: goodmap plugin that shows popup if no point is visible in a view
License: MIT
Author: krzysztof.kolodzinski@problematy.pl
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: goodmap (>=2.0.0a1,<3.0.0)
Description-Content-Type: text/markdown

# goodmap-nothingshere

goodmap plugin that shows popup if no point is visible in a view

## Installation

```sh
pip install goodmap_nothingshere
```

## Activation

Add the plugin to the `plugins` list in your Platzky database configuration.
The `name` must match the entry-point key declared in `pyproject.toml`:

```json
{
    "plugins": [
        {
            "name": "nothingshere",
            "config": {}
        }
    ]
}
```

## Development

This plugin extends [`PluginBase`](https://platzky.readthedocs.io/en/latest/plugins.html).
To add a specific capability, subclass one of:

- `NotifierPluginBase` — send notifications (implement `notify`)
- `AttachmentNotifierPluginBase` — notifications with file attachments
- `ContentTransformerPluginBase` — transform post/page content and register shortcodes

