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

# datasette-alerts-discord

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



## Installation

Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-alerts-discord
```
## 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-discord
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
```
