Metadata-Version: 2.1
Name: xarray-behave
Version: 0.7.3
Summary: xarray tools for behavioral data.
Home-page: https://github.com/janclemenslab/xarray-behave
License: UNKNOWN
Author: Jan Clemens
Author-email: clemensjan@googlemail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: xarray
Requires-Dist: h5py
Requires-Dist: zarr
Requires-Dist: flammkuchen
Requires-Dist: dask
Requires-Dist: toolz
Requires-Dist: samplestamps
Requires-Dist: soundfile
Requires-Dist: pyside2 ; extra == "gui"
Requires-Dist: pyqtgraph ; extra == "gui"
Requires-Dist: pyside2 ; extra == "gui"
Requires-Dist: pyqtgraph ; extra == "gui"
Requires-Dist: pyvideoreader ; extra == "gui"
Requires-Dist: sounddevice ; extra == "gui"
Requires-Dist: scikit-image ; extra == "gui"
Requires-Dist: opencv-python ; extra == "gui"
Requires-Dist: pyyaml ; extra == "gui"
Requires-Dist: defopt ; extra == "gui"
Provides-Extra: gui

# xarray-behave

## Installation
Install a working conda installation with python 3.7 (see [here](https://docs.conda.io/en/latest/miniconda.html)).

### Non-GUI
If you do not want to use the GUI, e.g. if just want to create, load, save datasets:
```shell
conda create -n xb python=3.7 -y
conda activate xb
pip install xarray-behave
```
See `demo.ipynb` for usage examples.

### GUI
For using the GUI
```shell
conda create -n xb_gui python=3.7 -y
conda activate xb_gui
conda install pyside2 pyqtgraph python-sounddevice -c conda-forge -y
pip install xarray-behave[gui]
```

The gui can be started by typing `xb` in a terminal. See `xb --help` for usage/arguments/keys.

