Metadata-Version: 2.1
Name: pyspoke
Version: 0.0.3.dev1
Summary: A publish/subscribe and rpc library in python
Home-page: https://gitlab.com/samflam/pyspoke
Author: samflam
Author-email: pyspoke@samflam.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# pyspoke

A python library supporting pubsub and remote procedure calls on Linux.

# Overview

TBD

# Installation

## From [PyPI](https://pypi.org/project/pyspoke/)

Install using pip:

```
python3 -m pip install pyspoke
```

## From latest source

First install build dependencies:

```
python3 -m pip install build
```

Building the distribution:

```
git clone https://gitlab.com/samflam/pyspoke.git
cd pyspoke
make
```

To install, you can `pip install` the built wheel in `dist` or simply run

```
make install
```

# Testing

From the top level, do:

```
make test
```


