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

# datasette-alerts-slack

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



## Installation

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