Metadata-Version: 2.1
Name: hive-chat
Version: 0.0.1
Summary: Chatbot interface for Hive
Author-email: Gary Benson <gary@gbenson.net>
Project-URL: Homepage, https://github.com/gbenson/hive/tree/main/libs/chat
Project-URL: Source, https://github.com/gbenson/hive
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: hive-common
Requires-Dist: hive-messaging

[![version badge]](https://pypi.org/project/hive-chat/)

[version badge]: https://img.shields.io/pypi/v/hive-chat?color=limegreen

# hive-chat

Chatbot interface for Hive

## Installation

### With PIP

```sh
pip install hive-chat
```

### From source

```sh
git clone https://github.com/gbenson/hive.git
cd hive/libs/chat
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
flake8 && pytest
```
