Metadata-Version: 2.1
Name: FlyBrainLab
Version: 1.1.7
Summary: Main Client of the FlyBrainLab Project
Home-page: https://flybrainlab.fruitflybrain.org
Author: Mehmet Kerem Turkcan
Author-email: mkt2126@columbia.edu
License: BSD-3-Clause
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: txaio
Requires-Dist: h5py
Requires-Dist: autobahn
Requires-Dist: twisted[tls]
Requires-Dist: autobahn-sync
Requires-Dist: pyOpenSSL
Requires-Dist: seaborn
Requires-Dist: requests
Requires-Dist: msgpack (>1.0)
Requires-Dist: msgpack-numpy
Requires-Dist: neuroballad
Requires-Dist: matplotlib
Requires-Dist: networkx
Requires-Dist: pandas
Requires-Dist: ipython
Requires-Dist: graphviz
Requires-Dist: jupyterlab (>=3.0)
Requires-Dist: pywin32 ; platform_system == "Windows"
Requires-Dist: dataclasses ; python_version < "3.7"
Provides-Extra: full
Requires-Dist: cdlib ; extra == 'full'
Requires-Dist: scikit-learn ; extra == 'full'
Requires-Dist: scipy ; extra == 'full'
Requires-Dist: umap-learn ; extra == 'full'
Requires-Dist: graspy (<=0.1.1) ; extra == 'full'
Requires-Dist: pyclustering ; extra == 'full'
Requires-Dist: tensorflow ; extra == 'full'
Provides-Extra: utilities
Requires-Dist: cdlib ; extra == 'utilities'
Requires-Dist: scikit-learn ; extra == 'utilities'
Requires-Dist: scipy ; extra == 'utilities'
Requires-Dist: umap-learn ; extra == 'utilities'
Requires-Dist: graspy (<=0.1.1) ; extra == 'utilities'
Requires-Dist: pyclustering ; extra == 'utilities'
Requires-Dist: tensorflow ; extra == 'utilities'

# FlyBrainLab Client

FlyBrainLab Client is a user-side backend implemented in Python that connects to the FFBO processor and accesses services provided by the connected backend servers. FlyBrainLab Client provides program execution APIs for handling requests to the server-side components and parsing of data coming from backend servers.

## Documentation

FlyBrainLab Client documentation is available at https://flybrainlab.github.io/FBLClient/.

## Installation

### Quick Installation

Up-to-date installation instructions for the whole FlyBrainLab ecosystem are available at https://github.com/FlyBrainLab/FlyBrainLab/blob/master/README.md. Follow the steps below for a manual installation of the front-end that may not be up-to-date.

### Manual Installation

To install FlyBrainLab Client, in a terminal window, execute the following:

```python
pip install git+https://github.com/mkturkcan/autobahn-sync.git git+https://github.com/FlyBrainLab/Neuroballad.git flybrainlab
```

To install FlyBrainLab with all optional dependencies for the utilities library, execute the following:

```python
pip install git+https://github.com/mkturkcan/autobahn-sync.git git+https://github.com/FlyBrainLab/Neuroballad.git git+https://github.com/palash1992/GEM.git git+https://github.com/mkturkcan/nxcontrol flybrainlab[full]
```

To install FlyBrainLab Client from a clone of this repository, execute:

```python
pip install .[full]
```

## Tutorials

Tutorials for learning about how to use FlyBrainLab Client with NeuroMynerva are given in [FlyBrainLab Tutorials](https://github.com/FlyBrainLab/Tutorials).


