Metadata-Version: 2.4
Name: datasette-alerts-desktop
Version: 0.1.0a3
Author: Alex Garcia
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/datasette/datasette-alerts-desktop
Project-URL: Changelog, https://github.com/datasette/datasette-alerts-desktop/releases
Project-URL: Issues, https://github.com/datasette/datasette-alerts-desktop/issues
Project-URL: CI, https://github.com/datasette/datasette-alerts-desktop/actions
Classifier: Framework :: Datasette
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: datasette>=1a19
Requires-Dist: datasette-alerts>=0.0.1a7
Requires-Dist: notify-py

# datasette-alerts-desktop

[![PyPI](https://img.shields.io/pypi/v/datasette-alerts-desktop.svg)](https://pypi.org/project/datasette-alerts-desktop/)
[![Changelog](https://img.shields.io/github/v/release/datasette/datasette-alerts-desktop?include_prereleases&label=changelog)](https://github.com/datasette/datasette-alerts-desktop/releases)
[![Tests](https://github.com/datasette/datasette-alerts-desktop/actions/workflows/test.yml/badge.svg)](https://github.com/datasette/datasette-alerts-desktop/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/datasette/datasette-alerts-desktop/blob/main/LICENSE)



## Installation

Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-alerts-desktop
```
## Usage

Usage instructions go here.

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd datasette-alerts-desktop
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
