Metadata-Version: 2.4
Name: hive-service
Version: 0.0.13
Summary: Common code for Hive services
Author-email: Gary Benson <gary@gbenson.net>
Project-URL: Homepage, https://github.com/gbenson/hive/tree/main/libs/service
Project-URL: Source, https://github.com/gbenson/hive
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: cloudevents[pydantic]
Requires-Dist: hive-common>=0.1.2
Requires-Dist: hive-messaging>=0.12.5

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

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

# hive-service

Common code for Hive services

## Installation

### With PIP

```sh
pip install hive-service
```

### From source

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