Metadata-Version: 2.1
Name: non_local_detector
Version: 0.2.8.dev0
Summary: A python package to decode non-local activity from neural data
Project-URL: Homepage, https://github.com/LorenFrankLab/non_local_detector
Project-URL: Bug Tracker, https://github.com/LorenFrankLab/non_local_detector/issues
Author-email: Eric Denovellis <eric.denovellis@ucsf.edu>
License: MIT License
        
        Copyright (c) 2023 Eric Denovellis
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: <3.11,>=3.8
Requires-Dist: jax
Requires-Dist: jaxlib
Requires-Dist: matplotlib
Requires-Dist: networkx
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: patsy
Requires-Dist: scikit-learn
Requires-Dist: scipy
Requires-Dist: seaborn
Requires-Dist: tqdm
Requires-Dist: track-linearization
Requires-Dist: xarray
Provides-Extra: gpu
Requires-Dist: jax[cuda11-pip]; extra == 'gpu'
Provides-Extra: test
Requires-Dist: black; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Description-Content-Type: text/markdown

# non_local_detector

## Installation

## GPU Installation

In order to use GPU with the conda or mamba environment, you need to install the following packages:

```bash
mamba create env -f environment_gpu.yml
```

or via pip:

```bash
pip install non_local_detector[gpu]
```

## CPU Installation

```bash
mamba create env -f environment.yml
```

or via pip:

```bash
pip install non_local_detector
```
