Metadata-Version: 2.1
Name: arus-stream-metawear
Version: 1.0.3
Summary: arus plugin that helps creating stream for metawear devices
Home-page: https://github.com/qutang/arus-stream-metawear
License: MIT
Keywords: ubiquitous computing,sensing,data processing,bluetooth,internet of things
Author: qutang
Author-email: tqshelly@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: arus (>=0.4.0,<0.5.0)
Requires-Dist: pymetawear (>=0.12.0,<0.13.0)
Project-URL: Documentation, https://qutang.github.io/arus-stream-metawear/
Project-URL: Repository, https://github.com/qutang/arus-stream-metawear
Description-Content-Type: text/markdown

`arus-stream-metawear` package is a plugin for [`arus`](https://qutang.github.io/arus/) package. It provides extra functionality to stream data from metawear devices in real-time.

### Get started

#### Prerequistes

```bash
python >= 3.6
```

##### Linux

```bash
libbluetooth-dev
libboost-all-dev
bluez
```

##### Windows

```bash
Visual Studio C++ SDK
Windows SDK (10.0.16299.0)
Windows SDK (10.0.17763.0)
```

#### Installation

Because one of the dependency is from git repository, pypi package is not available. Users should install directly from git repository.

```bash
> pip install git+https://github.com/qutang/arus-stream-metawear.git#egg=arus-stream-metawear
```

Or `pipenv`

```bash
> pipenv install git+https://github.com/qutang/arus-stream-metawear.git#egg=arus-stream-metawear
```

Or `poetry`

```bash
> poetry add --git https://github.com/qutang/arus-stream-metawear.git arus-stream-metawear
```


### Development

#### Prerequists

```bash
python >= 3.6
poetry >= 0.12.17
```

#### Set up development environment

```bash
> git clone https://github.com/qutang/arus-stream-metawear.git
> cd arus-stream-metawear
> poetry install
```
