Metadata-Version: 2.1
Name: outjack
Version: 15
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
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 outjack
. venvname/bin/activate
```

### To develop
First clone the repo using HTTP or SSH:
```
git clone https://github.com/combatopera/outjack.git
git clone git@github.com:combatopera/outjack.git
```
Now use pyven's pipify to create a setup.py, which pip can then use to install the project editably:
```
python3 -m venv pyvenvenv
pyvenvenv/bin/pip install pyven
pyvenvenv/bin/pipify outjack

python3 -m venv venvname
venvname/bin/pip install -e outjack
. venvname/bin/activate
```


