Metadata-Version: 2.1
Name: outjack
Version: 17
Summary: JACK and PortAudio integration for Python
Home-page: https://github.com/combatopera/outjack
Author: Andrzej Cichocki
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: nativecommon (>=4)
Requires-Dist: numpy (>=1.16.6)

# outjack
JACK and PortAudio integration for Python

## Install
These are generic installation instructions.

### To use, permanently
The quickest way to get started is to install the current release from PyPI:
```
pip3 install --user outjack
```

### To use, temporarily
If you prefer to keep .local clean, install to a virtualenv:
```
python3 -m venv venvname
venvname/bin/pip install -U pip
venvname/bin/pip install outjack
. venvname/bin/activate
```


