Metadata-Version: 2.1
Name: slackfin
Version: 0.1
Summary: Python library for generating Slack messages
Home-page: https://github.com/glennbach/slackfin
Author: Glenn W. Bach
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/glennbach/slackfin/issues
Project-URL: CI, https://github.com/glennbach/slackfin/actions
Project-URL: Changelog, https://github.com/glennbach/slackfin/releases
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# slackfin

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

Python library for generating Slack messages

## Installation

Install this library using `pip`:

    pip install slackfin

## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

    cd slackfin
    python -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
